Skip to content

Commit ba67de1

Browse files
committed
fix(lint): condition
1 parent 1065473 commit ba67de1

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/lint.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,14 +32,14 @@ jobs:
3232
.github/workflows/**/*.yaml
3333
3434
- name: Run yamllint
35-
if: ${{ !cancelled() }} && steps.changed-yaml.outputs.any_changed == 'true'
35+
if: ${{ !cancelled() && steps.changed-yaml.outputs.any_changed == 'true' }}
3636
uses: ibiqlik/action-yamllint@v3
3737
with:
3838
file_or_dir: ${{ steps.changed-yaml.outputs.all_changed_files }}
3939
format: 'colored'
4040

4141
- name: Run actionlint
42-
if: ${{ !cancelled() }} && steps.changed-workflows.outputs.any_changed == 'true'
42+
if: ${{ !cancelled() && steps.changed-workflows.outputs.any_changed == 'true' }}
4343
uses: docker://rhysd/actionlint:latest
4444
with:
4545
args: -color ${{ steps.changed-workflows.outputs.all_changed_files }}

0 commit comments

Comments
 (0)