Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .github/workflows/auto-bump-cli-version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,9 @@ jobs:
git config user.name "github-actions[bot]"
git config user.email "github-actions[bot]@users.noreply.github.com"
git add package.json
git commit -m "chore: bump cli version to v${NEW_VERSION} [skip ci]" || exit 0
# GITHUB_TOKEN pushes do not retrigger workflows, and [skip ci]
# leaks into squash-merge commit bodies where it suppresses main deploys.
git commit -m "chore: bump cli version to v${NEW_VERSION}" || exit 0
if [[ ! "$BRANCH_NAME" =~ ^[A-Za-z0-9._/-]+$ ]]; then
echo "Invalid head ref: $BRANCH_NAME"
exit 1
Expand Down