diff options
author | Joshua Sing <joshua@hypera.dev> | 2023-12-20 01:33:08 +1100 |
---|---|---|
committer | Joshua Sing <joshua@hypera.dev> | 2023-12-20 01:33:08 +1100 |
commit | d0785f79e3158974442dd16f6e6b1a160ace7e46 (patch) | |
tree | 1c9eef58d8a9b07fa8ee39c4311667d3b3265281 /.github/workflows/windows.yml | |
parent | a21a50397a7ae59315c5a5be2c73b1af142712d1 (diff) | |
download | portable-d0785f79e3158974442dd16f6e6b1a160ace7e46.tar.gz portable-d0785f79e3158974442dd16f6e6b1a160ace7e46.tar.bz2 portable-d0785f79e3158974442dd16f6e6b1a160ace7e46.zip |
ci: add concurrency groups to workflows
Diffstat (limited to '')
-rw-r--r-- | .github/workflows/windows.yml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index e68ef4d..a78a1ed 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml | |||
@@ -7,6 +7,10 @@ on: | |||
7 | schedule: | 7 | schedule: |
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: | ||
11 | group: "${{ github.workflow }}-${{ github.ref }}" | ||
12 | cancel-in-progress: true | ||
13 | |||
10 | jobs: | 14 | jobs: |
11 | test: | 15 | test: |
12 | name: "${{ matrix.os }}/${{ matrix.arch }} (${{ matrix.generator }})" | 16 | name: "${{ matrix.os }}/${{ matrix.arch }} (${{ matrix.generator }})" |