From 4a5a2a240fcbc24d974108d061c43e0888a15970 Mon Sep 17 00:00:00 2001 From: Keepers Date: Thu, 24 Aug 2023 15:21:52 -0600 Subject: [PATCH] fix conditional check on restore-args (#4104) #### Does this PR need a docs update or release note? - [x] :no_entry: No #### Type of change - [x] :bug: Bugfix - [x] :robot: Supportability/Tests #### Test Plan - [x] :green_heart: E2E --- .github/actions/backup-restore-test/action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/actions/backup-restore-test/action.yml b/.github/actions/backup-restore-test/action.yml index 20b3fdd43..fe9119392 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 != "" + 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 != "" }} + if: ${{ inputs.restore-args != "" }} shell: bash working-directory: src env: