Skip to content

Commit

Permalink
unconditionally check all skipped jobs
Browse files Browse the repository at this point in the history
  • Loading branch information
Qix- committed Mar 14, 2024
1 parent d8640a9 commit 0468a6f
Showing 1 changed file with 2 additions and 11 deletions.
13 changes: 2 additions & 11 deletions .github/workflows/push.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -179,18 +179,9 @@ jobs:
- check-gitbutler-core
runs-on: ubuntu-latest
steps:
- name: Decide whether the needed jobs succeeded or failed
- name: Check that all jobs that ran, succeeded
uses: re-actors/alls-green@release/v1
with:
allowed-skips: >-
${{
needs.changes.outputs.rust != 'true'
&& '
check-gitbutler-app,
check-gitbutler-changeset,
check-gitbutler-core,
'
|| ''
}}
allowed-skips: ${{ toJSON(needs) }}
jobs: ${{ toJSON(needs) }}

0 comments on commit 0468a6f

Please sign in to comment.