Skip to content

Commit

Permalink
fix: actions cancelling on push to master (#4578)
Browse files Browse the repository at this point in the history
  • Loading branch information
Sidddddarth committed Apr 12, 2024
1 parent 72d63ea commit c47bd91
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/builds.yml
Expand Up @@ -9,7 +9,7 @@ on:
- main
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref }}
group: ${{ github.workflow }}-${{ github.head_ref || github.sha }}
cancel-in-progress: true
env:
arch_amd64: amd64
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests.yaml
Expand Up @@ -7,7 +7,7 @@ on:
- "release/*"
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref }}
group: ${{ github.workflow }}-${{ github.head_ref || github.sha }}
cancel-in-progress: true
jobs:
integration:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/verify.yml
Expand Up @@ -8,7 +8,7 @@ on:
- main
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref }}
group: ${{ github.workflow }}-${{ github.head_ref || github.sha }}
cancel-in-progress: true
jobs:
generate:
Expand Down

0 comments on commit c47bd91

Please sign in to comment.