You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
sed -i "s#version\":\ \"\(.*\)\",#version\":\ \"${bumpedVersion}-next\",#g" package.json
89
-
git add package.json
90
-
git commit -s --amend -m "chore: bump version to ${bumpedVersion}"
91
-
git push origin "${bumpedBranchName}"
92
-
echo -e "📢 Bump version to ${bumpedVersion}\n\n${{ steps.TAG_UTIL.outputs.extVersion }} has been released.\n\n Time to switch to the new ${bumpedVersion} version 🥳" > /tmp/pr-title
93
-
pullRequestUrl=$(gh pr create --title "chore: 📢 Bump version to ${bumpedVersion}" --body-file /tmp/pr-title --head "${bumpedBranchName}" --base "main")
94
-
echo "📢 Pull request created: ${pullRequestUrl}"
95
-
echo "➡️ Flag the PR as being ready for review"
96
-
gh pr ready "${pullRequestUrl}"
97
-
echo "🔅 Mark the PR as being ok to be merged automatically"
0 commit comments