back to not equal to true
syntax instead of not
, :frown:
This commit is contained in:
parent
4e93141275
commit
e3c6c0ac9a
8
.github/workflows/ci.yml
vendored
8
.github/workflows/ci.yml
vendored
|
@ -37,7 +37,7 @@ jobs:
|
|||
name: Language lint
|
||||
runs-on: ubuntu-latest
|
||||
needs: pre_check
|
||||
if: ${{ !needs.pre_check.outputs.should_skip_lang }}
|
||||
if: ${{ needs.pre_check.outputs.should_skip_lang != 'true' }}
|
||||
defaults:
|
||||
run:
|
||||
shell: bash
|
||||
|
@ -51,7 +51,7 @@ jobs:
|
|||
name: Language build and test
|
||||
runs-on: ubuntu-latest
|
||||
needs: pre_check
|
||||
if: $${{ ! needs.pre_check.outputs.should_skip_lang }}
|
||||
if: $${{ needs.pre_check.outputs.should_skip_lang != 'true' }}
|
||||
defaults:
|
||||
run:
|
||||
shell: bash
|
||||
|
@ -71,7 +71,7 @@ jobs:
|
|||
name: Components build and test
|
||||
runs-on: ubuntu-latest
|
||||
needs: pre_check
|
||||
if: ${{ ! needs.pre_check.outputs.should_skip_components || ! needs.pre_check.outputs.should_skip_lang }}
|
||||
if: ${{ (needs.pre_check.outputs.should_skip_components != 'true') || (needs.pre_check.outputs.should_skip_lang != 'true') }}
|
||||
defaults:
|
||||
run:
|
||||
shell: bash
|
||||
|
@ -91,7 +91,7 @@ jobs:
|
|||
name: Website build
|
||||
runs-on: ubuntu-latest
|
||||
needs: pre_check
|
||||
if: ${{ ! needs.pre_check.outputs.should_skip_website || ! needs.pre_check.outputs.should_skip_lang || ! needs.pre_check.outputs.should_skip_components }}
|
||||
if: ${{ (needs.pre_check.outputs.should_skip_website != 'true') || (needs.pre_check.outputs.should_skip_lang != 'true') || (needs.pre_check.outputs.should_skip_components != 'true') }}
|
||||
defaults:
|
||||
run:
|
||||
shell: bash
|
||||
|
|
Loading…
Reference in New Issue
Block a user