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:...@@ -6,7 +6,7 @@ on:
6 - master6 - master
7concurrency: 7concurrency:
8 # Cancels pending runs when a PR gets updated.8 # 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 }}
10 cancel-in-progress: true10 cancel-in-progress: true
11jobs:11jobs:
12 x86_64-linux-debug:12 x86_64-linux-debug: