Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .github/workflows/links.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,12 @@ on:
permissions:
contents: read

# Cancel superseded link-check runs when a branch is re-pushed. Scheduled and
# PR runs use distinct refs, so the weekly link-rot job is unaffected.
concurrency:
group: links-${{ github.ref }}
cancel-in-progress: true

jobs:
links:
runs-on: ubuntu-latest
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,12 @@ on:
permissions:
contents: read

# Cancel superseded lint runs when a branch is re-pushed (e.g. Renovate
# automerge, bot PRs) to avoid burning minutes on stale commits.
concurrency:
group: lint-${{ github.ref }}
cancel-in-progress: true

jobs:
lint:
uses: DevSecNinja/.github/.github/workflows/lint.yml@27fd66740c629ea38380dcd3bf93e7bc74c54247 # v1.9.0
Expand Down
8 changes: 8 additions & 0 deletions .github/workflows/pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,14 @@ on:
permissions:
contents: read

# Cancel superseded PR preview builds when a branch is re-pushed (common with
# Renovate automerge and bot PRs). Grouping by ref keeps production deploys on
# main isolated; cancel-in-progress is limited to pull requests so an in-flight
# production deploy is never interrupted.
concurrency:
group: pages-${{ github.ref }}
cancel-in-progress: ${{ github.event_name == 'pull_request' }}

jobs:
pages:
uses: DevSecNinja/.github/.github/workflows/pages.yml@27fd66740c629ea38380dcd3bf93e7bc74c54247 # v1.9.0
Expand Down