Sentry with YAML

YAML parameters for Sentry

NameTypeDescription
action RequiredStringThe name of the action.
type RequiredStringThe type of the action. Should be set to SENTRY.
organization_slug RequiredStringThe slug of the organization the release belongs to.
integration RequiredStringThe ID of the integration.
version RequiredStringThe version identifier of the release.
environment RequiredStringThe environment you’re deploying to.
organization_slug RequiredStringThe short name of your organization.
deploy_urlStringThe optional url that points to the deploy.
release_urlStringAn optional commit reference.
projects RequiredString[]The list of project slugs that are involved in this release.
repositoryStringIf 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

yaml
actions: - 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