Skip to content

Commit fbf76d3

Browse files
authored
FIX: Remove parenthesis for multiple conditions (#126)
1 parent 0d2e790 commit fbf76d3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

check-licenses/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ runs:
3232
using: "composite"
3333
steps:
3434
- name: "Install Git and clone project"
35-
if: ${{ (inputs.skip-install == 'false') && (inputs.checkout == 'true') }}
35+
if: ${{ inputs.skip-install == 'false' && inputs.checkout == 'true' }}
3636
uses: actions/checkout@v3
3737

3838
- name: "Set up Python"

doc-build/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ runs:
4444

4545
- name: "Install Git and clone project"
4646
uses: actions/checkout@v3
47-
if: ${{ (inputs.skip-install == 'false') && (inputs.checkout == 'true') }}
47+
if: ${{ inputs.skip-install == 'false' && inputs.checkout == 'true' }}
4848

4949
- name: "Check if X Virtual Frame Buffer is needed"
5050
shell: bash

0 commit comments

Comments
 (0)