chore(ci): disabe workflow concurrency by workflow-[pr|ref]

This commit is contained in:
Quentin McGaw
2026-06-05 15:50:01 +00:00
parent ff6e45fae0
commit c599e7fd2c
2 changed files with 8 additions and 0 deletions
+4
View File
@@ -28,6 +28,10 @@ on:
- go.mod - go.mod
- go.sum - go.sum
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs: jobs:
verify: verify:
runs-on: ubuntu-latest runs-on: ubuntu-latest
+4
View File
@@ -11,6 +11,10 @@ on:
- "**.md" - "**.md"
- .github/workflows/markdown.yml - .github/workflows/markdown.yml
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs: jobs:
markdown: markdown:
runs-on: ubuntu-latest runs-on: ubuntu-latest