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> 2023-01-09 14:58:07-07:00
log290874a24e034631ce7b63041833ec7df98fc619
tree909e5c0bbb99554f025c2652e69f02bb5d8a29c1
parent033dcf78116cc6d99f209cb349eb9daf12101729

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: