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/linux.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 '.github/workflows/linux.yml')
-rw-r--r-- | .github/workflows/linux.yml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index f9ec4da..c51ade2 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml | |||
@@ -7,6 +7,10 @@ on: | |||
7 | schedule: | 7 | schedule: |
8 | - cron: "0 0 * * *" # At 00:00 daily. | 8 | - cron: "0 0 * * *" # At 00:00 daily. |
9 | 9 | ||
10 | concurrency: | ||
11 | group: "${{ github.workflow }}-${{ github.ref }}" | ||
12 | cancel-in-progress: true | ||
13 | |||
10 | jobs: | 14 | jobs: |
11 | # Test against all supported architectures. | 15 | # Test against all supported architectures. |
12 | test: | 16 | test: |