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