Browse Source

feat: Add concurrency group names to workflows

The `details-check.yml` and `update-check.yml` workflows now have a concurrency group name that includes the branch or tag name. This will allow for better management of concurrent workflow runs.
pull/4298/head
Daniel Gibbs 2 years ago
parent
commit
215c9a5b9a
  1. 2
      .github/workflows/details-check.yml
  2. 2
      .github/workflows/update-check.yml

2
.github/workflows/details-check.yml

@ -5,7 +5,7 @@ on:
push: push:
concurrency: concurrency:
group: ${{ github.ref_name }} group: details-check-${{ github.ref_name }}
cancel-in-progress: true cancel-in-progress: true
jobs: jobs:

2
.github/workflows/update-check.yml

@ -5,7 +5,7 @@ on:
push: push:
concurrency: concurrency:
group: ${{ github.ref_name }} group: update-check${{ github.ref_name }}
cancel-in-progress: true cancel-in-progress: true
jobs: jobs:

Loading…
Cancel
Save