mirror of
https://github.com/super-linter/super-linter.git
synced 2024-12-22 20:52:12 -05:00
Fix base branch
This commit is contained in:
parent
7e9696340d
commit
07e93a4d33
2 changed files with 2 additions and 2 deletions
2
.github/scripts/update-npm.sh
vendored
2
.github/scripts/update-npm.sh
vendored
|
@ -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
|
||||
|
|
2
.github/scripts/update-python.sh
vendored
2
.github/scripts/update-python.sh
vendored
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue