Browse Source

feat: Add concurrency to details-check workflow

This commit adds a new feature to the details-check workflow by including concurrency. The group is set to the branch name and cancel-in-progress is enabled.
pull/4240/head
Daniel Gibbs 2 years ago
parent
commit
fa24b08370
  1. 4
      .github/workflows/details-check.yml

4
.github/workflows/details-check.yml

@ -4,6 +4,10 @@ on:
workflow_dispatch:
push:
concurrency:
group: ${{ github.ref_name }}
cancel-in-progress: true
jobs:
create-matrix:
runs-on: ubuntu-latest

Loading…
Cancel
Save