diff options
author | 2021-05-15 16:46:41 +0100 | |
---|---|---|
committer | 2021-05-15 16:46:41 +0100 | |
commit | 1c07a8c874cdb421b456daec5c4398a0414b3d17 (patch) | |
tree | 9620f72ae218639a4dfbf30890005da90fceec7b | |
parent | Merge pull request #735 from python-discord/concurrency-action (diff) |
Namespace each concurrency group
This stops different actions, from the same commit, running in parallel from canceling each other.
-rw-r--r-- | .github/workflows/build.yaml | 2 | ||||
-rw-r--r-- | .github/workflows/lint.yaml | 2 | ||||
-rw-r--r-- | .github/workflows/sentry_release.yaml | 2 | ||||
-rw-r--r-- | .github/workflows/status_embed.yaml | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index dac711f8..e857a6cf 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -9,7 +9,7 @@ on: - completed concurrency: - group: ${{ github.ref }} + group: ${{ github.workflow }}-${{ github.ref }} cancel-in-progress: true jobs: diff --git a/.github/workflows/lint.yaml b/.github/workflows/lint.yaml index 3a9b6dbd..9e9cbbbf 100644 --- a/.github/workflows/lint.yaml +++ b/.github/workflows/lint.yaml @@ -7,7 +7,7 @@ on: pull_request: concurrency: - group: ${{ github.ref }} + group: ${{ github.workflow }}-${{ github.ref }} cancel-in-progress: true jobs: diff --git a/.github/workflows/sentry_release.yaml b/.github/workflows/sentry_release.yaml index e7bc0429..c1073386 100644 --- a/.github/workflows/sentry_release.yaml +++ b/.github/workflows/sentry_release.yaml @@ -6,7 +6,7 @@ on: - main concurrency: - group: ${{ github.ref }} + group: ${{ github.workflow }}-${{ github.ref }} cancel-in-progress: true jobs: diff --git a/.github/workflows/status_embed.yaml b/.github/workflows/status_embed.yaml index 23677488..737efe00 100644 --- a/.github/workflows/status_embed.yaml +++ b/.github/workflows/status_embed.yaml @@ -9,7 +9,7 @@ on: - completed concurrency: - group: ${{ github.ref }} + group: ${{ github.workflow }}-${{ github.ref }} cancel-in-progress: true jobs: |