Skip to content

Commit 0655000

Browse files
committed
Cancel duplicate checks release notes actions
The action to check release notes is triggered by each edit to the description. For example, selecting the check boxes counts each as a single change. It triggers an action for each selection. Thus, up to 6 actions to check the release notes might be queued. This change cancels other queued actions for the same PR.
1 parent 5c36ee5 commit 0655000

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

.github/workflows/release-notes-check.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@ env:
1010
jobs:
1111
check_release_note:
1212
runs-on: ubuntu-latest
13+
concurrency:
14+
group: ${{ github.workflow }}-check-release-note-${{ github.event.pull_request.number }}
15+
cancel-in-progress: true
1316
steps:
1417
- name: Checkout
1518
uses: actions/checkout@v4

0 commit comments

Comments
 (0)