Skip to content

Commit

Permalink
Merge pull request #73 from Itxaka/concurrency
Browse files Browse the repository at this point in the history
  • Loading branch information
Itxaka authored Jul 20, 2023
2 parents 105f8de + 2c0bb11 commit 5171e7f
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ on:
tags:
- '*'

concurrency:
group: image-${{ github.ref || github.head_ref }}
cancel-in-progress: true

jobs:
docker:
runs-on: ubuntu-latest
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ on:
pull_request:
paths:
- '**'

concurrency:
group: lint-${{ github.ref || github.head_ref }}
cancel-in-progress: true

env:
FORCE_COLOR: 1
jobs:
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ on:
- '*'
pull_request:

concurrency:
group: test-${{ github.ref || github.head_ref }}
cancel-in-progress: true

jobs:
docker:
runs-on: ubuntu-latest
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/tool-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ on:
- master
tags:
- '*'
concurrency:
group: tool-image-${{ github.ref || github.head_ref }}
cancel-in-progress: true

jobs:
docker:
Expand Down

0 comments on commit 5171e7f

Please sign in to comment.