CI: adjust logic for cancelling workflows

This prevents clobbering when two contributors' PRs have the same head
ref.
This commit is contained in:
Andrew Kelley 2022-12-05 15:51:10 -07:00
parent 033dcf7811
commit 290874a24e

View file

@ -6,7 +6,7 @@ on:
- master
concurrency:
# Cancels pending runs when a PR gets updated.
group: ${{ github.head_ref || github.run_id }}
group: ${{ github.head_ref || github.run_id }}-${{ github.actor }}
cancel-in-progress: true
jobs:
x86_64-linux-debug: