Skip to content
Merged
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
11 changes: 11 additions & 0 deletions .github/workflows/on-pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,17 @@ on:
permissions:
contents: read

# Cancel stale runs so only the PR's current HEAD determines the
# check status. Matters specifically for PRs where the
# upstream-release-docs workflow pushes multiple commits
# in quick succession (skill output + prettier/eslint autofix): the
# intermediate commits briefly fail lint until the autofix lands,
# and without cancel-in-progress those intermediate failures stay
# in the check history.
concurrency:
group: on-pr-${{ github.event.pull_request.number }}
cancel-in-progress: true

jobs:
static-checks:
name: Static checks
Expand Down