Sentry with YAML
Tip
Learn more about:
YAML parameters for Sentry
Name | Type | Description |
---|---|---|
action Required | String | The name of the action. |
type Required | String | The type of the action. Should be set to SENTRY . |
organization_slug Required | String | The slug of the organization the release belongs to. |
integration Required | String | The ID of the integration. |
version Required | String | The version identifier of the release. |
environment Required | String | The environment you’re deploying to. |
organization_slug Required | String | The short name of your organization. |
deploy_url | String | The optional url that points to the deploy. |
release_url | String | An optional commit reference. |
projects Required | String[] | The list of project slugs that are involved in this release. |
repository | String | If Sentry is integrated with repository provider, you can enter the project slug here. You can use the $BUDDY_REPO_SLUG variable as well. |
YAML example for Sentry
yamlactions: - action: "Sentry Action" type: "SENTRY" trigger_time: "ON_EVERY_EXECUTION" organization_slug: "buddyworks" organization_name: "Buddy" version: "${BUDDY_RUN_COMMIT}" environment: "$env" release_url: "${BUDDY_RUN_COMMIT_URL}" deploy_url: "${BUDDY_RUN_URL}" repository: "$BUDDY_REPO_SLUG" projects: - "java" - "my_proj" integration: "my_integration" variables: - key: "env" value: "linux"
Last modified on Oct 29, 2024