Skip to content

Commit

Permalink
Fix concurrency groups for github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
tomhughes committed Oct 5, 2022
1 parent 106ac72 commit c054e8f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ on:
- push
- pull_request
concurrency:
group: ${{ github.workflow }}-{{ github.head_ref || github.ref }}
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }}
cancel-in-progress: true
jobs:
test:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ on:
- push
- pull_request
concurrency:
group: ${{ github.workflow }}-{{ github.head_ref || github.ref }}
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }}
cancel-in-progress: true
env:
os: ubuntu-20.04
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ on:
- push
- pull_request
concurrency:
group: ${{ github.workflow }}-{{ github.head_ref || github.ref }}
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }}
cancel-in-progress: true
jobs:
test:
Expand Down

0 comments on commit c054e8f

Please sign in to comment.