From 5a6f3796e1b651124e0cbf225f30000aebc30e4c Mon Sep 17 00:00:00 2001 From: Brett Logan Date: Tue, 22 Feb 2022 10:34:16 -0500 Subject: [PATCH] Ignore unbound variable --- .github/scripts/update-npm.sh | 1 + .github/scripts/update-python.sh | 1 + 2 files changed, 2 insertions(+) diff --git a/.github/scripts/update-npm.sh b/.github/scripts/update-npm.sh index 8f3d37a4..1ac20da5 100755 --- a/.github/scripts/update-npm.sh +++ b/.github/scripts/update-npm.sh @@ -31,6 +31,7 @@ if [[ $(git status --porcelain) ]]; then # Open pull request echo "Opening pull request..." + # shellcheck disable=SC2154 echo "${token}" | gh auth login --with-token gh pr create --title "Weekly NPM Updates" --body "Updates NPM dependencies" --base master --head "npm_deps_${id}" else diff --git a/.github/scripts/update-python.sh b/.github/scripts/update-python.sh index 7ad70595..2b19cda8 100755 --- a/.github/scripts/update-python.sh +++ b/.github/scripts/update-python.sh @@ -71,6 +71,7 @@ if [[ $(git status --porcelain) ]]; then # Open pull request echo "Opening pull request..." + # shellcheck disable=SC2154 echo "${token}" | gh auth login --with-token gh pr create --title "Weekly Python Updates" --body "Updates Python dependencies" --base master --head "python_deps_${id}" else