Skip to content

Commit c544e4d

Browse files
kartbennashif
authored andcommitted
Revert "ci: cleanup concurrency rules"
This reverts commit 2dcb618. Completely breaks CI due to concurrency key being wrong and the same for every PR... Signed-off-by: Benjamin Cabé <[email protected]>
1 parent d339b96 commit c544e4d

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

.github/workflows/bsim-tests.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ on:
2929
- "tests/drivers/uart/**"
3030

3131
concurrency:
32-
group: ${{ github.workflow }}-${{ github.event_name }}-${{ github.ref }}
32+
group: ${{ github.workflow }}-${{ github.event_name }}-${{ github.head_ref || github.ref }}
3333
cancel-in-progress: true
3434

3535
jobs:

.github/workflows/codecov.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55
- cron: '25 06,18 * * *'
66

77
concurrency:
8-
group: ${{ github.workflow }}-${{ github.event_name }}-${{ github.ref }}
8+
group: ${{ github.workflow }}-${{ github.event_name }}-${{ github.head_ref || github.ref }}
99
cancel-in-progress: true
1010

1111
jobs:

.github/workflows/doc-build.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ jobs:
6666
runs-on: ubuntu-22.04
6767
timeout-minutes: 90
6868
concurrency:
69-
group: ${{ github.workflow }}-${{ github.event_name }}-${{ github.ref }}
69+
group: doc-build-html-${{ github.ref }}
7070
cancel-in-progress: true
7171

7272
steps:
@@ -192,7 +192,7 @@ jobs:
192192
container: texlive/texlive:latest
193193
timeout-minutes: 120
194194
concurrency:
195-
group: ${{ github.workflow }}-${{ github.event_name }}-${{ github.ref }}
195+
group: doc-build-pdf-${{ github.ref }}
196196
cancel-in-progress: true
197197

198198
steps:

.github/workflows/footprint-tracking.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ on:
1717
- 'v*'
1818

1919
concurrency:
20-
group: ${{ github.workflow }}-${{ github.event_name }}-${{ github.ref }}
20+
group: ${{ github.workflow }}-${{ github.event_name }}-${{ github.head_ref || github.ref }}
2121
cancel-in-progress: true
2222

2323
jobs:

.github/workflows/hello_world_multiplatform.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ on:
1717
- 'SDK_VERSION'
1818

1919
concurrency:
20-
group: ${{ github.workflow }}-${{ github.event_name }}-${{ github.ref }}
20+
group: ${{ github.workflow }}-${{ github.event_name }}-${{ github.head_ref || github.ref }}
2121
cancel-in-progress: true
2222

2323
jobs:

.github/workflows/twister.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ on:
1616
- cron: '0 3 * * 0'
1717

1818
concurrency:
19-
group: ${{ github.workflow }}-${{ github.event_name }}-${{ github.ref }}
19+
group: ${{ github.workflow }}-${{ github.event_name }}-${{ github.head_ref || github.ref }}
2020
cancel-in-progress: true
2121

2222
jobs:

0 commit comments

Comments
 (0)