1
0
mirror of https://github.com/Llewellynvdm/conky.git synced 2024-09-29 05:29:11 +00:00

Cancel previous concurrent build actions.

This commit is contained in:
Brenden Matthews 2022-10-13 15:32:01 -05:00
parent 4dcfaff73a
commit 31d43177a0
No known key found for this signature in database
GPG Key ID: B49ABB7270D9D4FD
4 changed files with 14 additions and 0 deletions

View File

@ -1,5 +1,8 @@
name: Build and test on Linux
on: [push, pull_request]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
strategy:

View File

@ -1,5 +1,8 @@
name: Build and test on macOS
on: [push, pull_request]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
strategy:

View File

@ -10,6 +10,10 @@ on:
tags:
- v*
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
env:
IMAGE_NAME: conky
DOCKERHUB_ACCOUNT: brndnmtthws

View File

@ -6,6 +6,10 @@ on:
tags:
- v*
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-22.04