authorgravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2022-12-05 15:51:10-07:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2022-12-05 15:51:10-07:00
logdc852f8226749eb8dd5e1e2496f18a4d102f60b1
tree4e290036e4893117d766559d82de0c2b204792d2
parent12e34e70377882363dbedf2a7afdc8737a7435c5

CI: adjust logic for cancelling workflows

This prevents clobbering when two contributors' PRs have the same head ref.

1 files changed, 1 insertions(+), 1 deletions(-)

.github/workflows/ci.yaml+1-1
......@@ -6,7 +6,7 @@ on:
66 - master
77concurrency:
88 # Cancels pending runs when a PR gets updated.
9 group: ${{ github.head_ref || github.run_id }}
9 group: ${{ github.head_ref || github.run_id }}-${{ github.actor }}
1010 cancel-in-progress: true
1111jobs:
1212 x86_64-linux-debug: