diff options
author | 2021-05-08 21:09:48 +0300 | |
---|---|---|
committer | 2021-05-08 21:09:48 +0300 | |
commit | 28a2862adead0e4d9a87bc8304b00075dbe3871e (patch) | |
tree | 8ef4ffe0da103d9afda08ddc053d491bcc8d9bee /.github | |
parent | Merge pull request #216 from python-discord/dependabot/npm_and_yarn/fortaweso... (diff) |
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.
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/create_sentry_release.yml | 1 |
1 files changed, 1 insertions, 0 deletions
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 |