Skip to content

Commit a7c1093

Browse files
committed
[nrf noup] ci: Fix manifest-pr-skip
fixup! [nrf noup] ci: Enable action-manifest-pr When the PR title or body contains "manifest-pr-skip", this action will cancel itself, which results in a failure status. Use the same condition to skip the whole workflow instead. Signed-off-by: Grzegorz Swiderski <[email protected]>
1 parent b83478a commit a7c1093

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

.github/workflows/manifest-PR.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@ on:
88

99
jobs:
1010
call-manifest-pr-action:
11+
if: >
12+
!(contains(github.event.pull_request.title, 'manifest-pr-skip') ||
13+
contains(github.event.pull_request.body, 'manifest-pr-skip'))
1114
runs-on: ubuntu-latest
1215
steps:
1316
- name: handle manifest PR

0 commit comments

Comments
 (0)