Skip to content

Commit 0264346

Browse files
authored
Fix github.ref check for concurrency settings (#241) (#243)
1 parent d433941 commit 0264346

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/humble-build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ on:
1515
- cron: '28 6 * * MON-FRI'
1616

1717
concurrency:
18-
# cancel previous runs of the same workflow, except for pushes on master branch
18+
# cancel previous runs of the same workflow, except for pushes on given branches
1919
group: ${{ github.workflow }}-${{ github.ref }}
20-
cancel-in-progress: ${{ !startsWith(github.ref, '/refs/heads') }}
20+
cancel-in-progress: ${{ !startsWith(github.ref, 'refs/heads') }}
2121

2222
jobs:
2323
binary:

.github/workflows/jazzy-build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ on:
1515
- cron: '28 6 * * MON-FRI'
1616

1717
concurrency:
18-
# cancel previous runs of the same workflow, except for pushes on jazzy branch
18+
# cancel previous runs of the same workflow, except for pushes on given branches
1919
group: ${{ github.workflow }}-${{ github.ref }}
20-
cancel-in-progress: ${{ !startsWith(github.ref, '/refs/heads') }}
20+
cancel-in-progress: ${{ !startsWith(github.ref, 'refs/heads') }}
2121

2222
jobs:
2323
binary:

.github/workflows/rolling-build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ on:
1515
- cron: '28 6 * * MON-FRI'
1616

1717
concurrency:
18-
# cancel previous runs of the same workflow, except for pushes on master branch
18+
# cancel previous runs of the same workflow, except for pushes on given branches
1919
group: ${{ github.workflow }}-${{ github.ref }}
20-
cancel-in-progress: ${{ !startsWith(github.ref, '/refs/heads') }}
20+
cancel-in-progress: ${{ !startsWith(github.ref, 'refs/heads') }}
2121

2222
jobs:
2323
binary:

0 commit comments

Comments
 (0)