From 28a2862adead0e4d9a87bc8304b00075dbe3871e Mon Sep 17 00:00:00 2001 From: Hassan Abouelela Date: Sat, 8 May 2021 21:09:48 +0300 Subject: Block Sentry Action For Dependabot Dependabot PRs no longer have access to environment secrets (see: https://github.com/dependabot/dependabot-core/issues/3253). This fix stops the action from running on dependabot PRs. --- .github/workflows/create_sentry_release.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/create_sentry_release.yml b/.github/workflows/create_sentry_release.yml index e3f6a6b..96879c1 100644 --- a/.github/workflows/create_sentry_release.yml +++ b/.github/workflows/create_sentry_release.yml @@ -9,6 +9,7 @@ on: jobs: build: runs-on: ubuntu-latest + if: ${{ github.actor != 'dependabot[bot]' }} steps: - uses: actions/checkout@v2 -- cgit v1.2.3