Compare commits

...

2 Commits

Author SHA1 Message Date
ryanfkeepers
8c12f6681c path glob on linter, plus possible conditional fix 2023-08-24 15:55:11 -06:00
ryanfkeepers
29eab0b960 extend actionlint coverage 2023-08-24 15:55:10 -06:00
2 changed files with 3 additions and 2 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,6 +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"
# ----------------------------------------------------------------------------------------------------
# --- Publish steps ----------------------------------------------------------------------------------