path glob on linter, plus possible conditional fix

This commit is contained in:
ryanfkeepers 2023-08-24 15:49:54 -06:00
parent 29eab0b960
commit 8c12f6681c
2 changed files with 3 additions and 3 deletions

View File

@ -56,7 +56,7 @@ runs:
tee $GITHUB_OUTPUT
- name: Restore ${{ inputs.service }} ${{ inputs.kind }}
if: ${{ inputs.restore-args != "" }}
if: ${{ inputs.restore-args != '' }}
id: restore
shell: bash
working-directory: src
@ -78,7 +78,7 @@ runs:
cat /tmp/corsologs
- name: Check restore ${{ inputs.service }} ${{ inputs.kind }}
if: ${{ inputs.restore-args != "" }}
if: ${{ inputs.restore-args != '' }}
shell: bash
working-directory: src
env:

View File

@ -509,7 +509,7 @@ jobs:
# * various variable quoting patterns
# * possible ineffective echo commands
flags: "-ignore SC2129 -ignore SC2086 -ignore SC2046 -ignore 2116"
files: ".github/workflows/*.yml, .github/actions/*.yml"
files: ".github/workflows/*.yml, .github/actions/**/*.yml"
# ----------------------------------------------------------------------------------------------------
# --- Publish steps ----------------------------------------------------------------------------------