From f6a1a974e6564132065a3a86bb6c35a7e76cf6db Mon Sep 17 00:00:00 2001 From: Mario Vitale Date: Fri, 15 Dec 2023 13:27:14 +0100 Subject: [PATCH] Fix typo: use correct base branch in PR creation --- scripts/bump.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/bump.sh b/scripts/bump.sh index 19c695b0414..386a1715968 100755 --- a/scripts/bump.sh +++ b/scripts/bump.sh @@ -87,7 +87,7 @@ if [ -n "${CREATE_PR}" ]; then PR_TITLE="Bump app ${BUMP_BUILD_NUMBER:+build}${BUMP_VERSION_NUMBER:+${BUMP_BUILD_NUMBER:+ and }version} number" gh pr create \ --repo mattermost/mattermost-mobile \ - --base main \ + --base "${BRANCH_TO_BUILD}" \ --head "${GIT_LOCAL_BRANCH}" \ --reviewer "${PR_REVIEWERS}" \ --title "$PR_TITLE" \