Merge pull request #3154 from gitbutlerapp/fix-all-green

unconditionally check all skipped jobs
This commit is contained in:
Josh Junon 2024-03-14 19:47:26 +01:00 committed by GitHub
commit ef9239b712
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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) }}