From 8c12f6681c9e6fb4fbc464e24f9af9ca4205410b Mon Sep 17 00:00:00 2001 From: ryanfkeepers Date: Thu, 24 Aug 2023 15:49:54 -0600 Subject: [PATCH] path glob on linter, plus possible conditional fix --- .github/actions/backup-restore-test/action.yml | 4 ++-- .github/workflows/ci.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/actions/backup-restore-test/action.yml b/.github/actions/backup-restore-test/action.yml index fe9119392..872420109 100644 --- a/.github/actions/backup-restore-test/action.yml +++ b/.github/actions/backup-restore-test/action.yml @@ -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: diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8770efdd5..bd7803f0b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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 ----------------------------------------------------------------------------------