Skip to content

Commit

Permalink
Cancel tests unless it was triggered by tag
Browse files Browse the repository at this point in the history
  • Loading branch information
art-divin committed Jan 23, 2024
1 parent 079da2d commit 01ec1e7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test_macOS.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ on:

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ github.ref != 'refs/heads/master' }}
cancel-in-progress: ${{ github.ref_type != 'tag' }}

jobs:
macos_build:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test_ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ on:

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ github.ref != 'refs/heads/master' }}
cancel-in-progress: ${{ github.ref_type != 'tag' }}

jobs:
linux_build:
Expand Down

0 comments on commit 01ec1e7

Please sign in to comment.