Skip to content

Commit 9bfa334

Browse files
authored
Merge pull request #206 from htilly/fix/workflow-conditions
Fix workflow job conditions causing skipped executions
2 parents 2d9732a + 42748a3 commit 9bfa334

1 file changed

Lines changed: 1 addition & 4 deletions

File tree

.github/workflows/feature-request-enhance.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,6 @@ jobs:
110110
create-confluence:
111111
runs-on: ubuntu-latest
112112
needs: preprocess
113-
if: needs.preprocess.outcome == 'success'
114113
permissions:
115114
contents: read
116115
issues: write
@@ -191,7 +190,6 @@ jobs:
191190
update-github-issue:
192191
runs-on: ubuntu-latest
193192
needs: preprocess
194-
if: needs.preprocess.outcome == 'success'
195193
permissions:
196194
contents: read
197195
issues: write
@@ -244,8 +242,7 @@ jobs:
244242
245243
add-comment:
246244
runs-on: ubuntu-latest
247-
needs: [preprocess, update-github-issue]
248-
if: needs.update-github-issue.outcome == 'success'
245+
needs: update-github-issue
249246
permissions:
250247
issues: write
251248
steps:

0 commit comments

Comments
 (0)