Skip to content

Commit 69a2bed

Browse files
committed
Execute 'finish' jobs even if some components fails in 'pull'
1 parent c900727 commit 69a2bed

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/pull-components.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,8 @@ jobs:
229229
done
230230
231231
finish:
232-
needs: pull
232+
needs: [prepare, pull]
233+
if: always() && needs.prepare.result == 'success'
233234
runs-on: ubuntu-latest
234235
steps:
235236
- uses: actions/checkout@v3

0 commit comments

Comments
 (0)