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