Skip to content

Commit 53621e5

Browse files
committed
fix(ci): properly skip release-body workflow in non-drivers tags.
Signed-off-by: Federico Di Pierro <[email protected]>
1 parent 4c76294 commit 53621e5

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/release-body.yml

+6-1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ on:
77

88
permissions:
99
contents: write
10+
actions: 'write'
1011

1112
concurrency:
1213
group: "release-body"
@@ -27,7 +28,11 @@ jobs:
2728

2829
- name: Skip on non driver tag
2930
if: steps.regex-match.outputs.match == ''
30-
run: exit 0
31+
run: |
32+
gh run cancel ${{ github.run_id }}
33+
gh run watch ${{ github.run_id }}
34+
env:
35+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3136

3237
- name: Clone libs repo
3338
actions: checkout@v4

0 commit comments

Comments
 (0)