diff options
author | Joshua Sing <joshua@joshuasing.dev> | 2024-05-29 17:25:18 +1000 |
---|---|---|
committer | Joshua Sing <joshua@joshuasing.dev> | 2024-05-29 17:25:18 +1000 |
commit | efebc91c976436f004e1726d7e8b0b1105c363af (patch) | |
tree | 3d4f17888822caf73aec17b6949c72839a5d9209 /.github/workflows/windows.yml | |
parent | e8bd2e956ee08053d03ce361fdeae12f4c7cf899 (diff) | |
download | portable-efebc91c976436f004e1726d7e8b0b1105c363af.tar.gz portable-efebc91c976436f004e1726d7e8b0b1105c363af.tar.bz2 portable-efebc91c976436f004e1726d7e8b0b1105c363af.zip |
ci: add event number to concurrency group
Diffstat (limited to '')
-rw-r--r-- | .github/workflows/windows.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index fe14501..6aca153 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml | |||
@@ -8,7 +8,7 @@ on: | |||
8 | - cron: "0 0 * * 0" # At 00:00 weekly on Sunday. | 8 | - cron: "0 0 * * 0" # At 00:00 weekly on Sunday. |
9 | 9 | ||
10 | concurrency: | 10 | concurrency: |
11 | group: "${{ github.workflow }}-${{ github.ref }}" | 11 | group: "${{ github.workflow }}-${{ github.event.number || github.ref }}" |
12 | cancel-in-progress: true | 12 | cancel-in-progress: true |
13 | 13 | ||
14 | jobs: | 14 | jobs: |