Fix base branch

This commit is contained in:
Brett Logan 2022-02-22 10:36:08 -05:00
parent 7e9696340d
commit 07e93a4d33
No known key found for this signature in database
GPG key ID: 52ED7D1F56850EE6
2 changed files with 2 additions and 2 deletions

View file

@ -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

View file

@ -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