From 07e93a4d33cf590ab384323e3b8e78acd5086451 Mon Sep 17 00:00:00 2001 From: Brett Logan Date: Tue, 22 Feb 2022 10:36:08 -0500 Subject: [PATCH] Fix base branch --- .github/scripts/update-npm.sh | 2 +- .github/scripts/update-python.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/scripts/update-npm.sh b/.github/scripts/update-npm.sh index 1ac20da5..82320a03 100755 --- a/.github/scripts/update-npm.sh +++ b/.github/scripts/update-npm.sh @@ -33,7 +33,7 @@ if [[ $(git status --porcelain) ]]; then 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}" + gh pr create --title "Weekly NPM Updates" --body "Updates NPM dependencies" --base main --head "npm_deps_${id}" else echo "No changes to commit" fi diff --git a/.github/scripts/update-python.sh b/.github/scripts/update-python.sh index f3a17c3b..5a37d14b 100755 --- a/.github/scripts/update-python.sh +++ b/.github/scripts/update-python.sh @@ -73,7 +73,7 @@ if [[ $(git status --porcelain) ]]; then 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}" + gh pr create --title "Weekly Python Updates" --body "Updates Python dependencies" --base main --head "python_deps_${id}" else echo "No changes to commit" fi