Skip to content
Merged
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
22 changes: 17 additions & 5 deletions justfile
Original file line number Diff line number Diff line change
Expand Up @@ -280,11 +280,23 @@ release LEVEL: release-check
--title "release: v${VERSION}" \
--body "Bump to v${VERSION} ({{ LEVEL }} release)" \
--base main
echo ""
echo "PR created. Next steps:"
echo " gh pr checks # watch CI"
echo " gh pr merge --squash --delete-branch"
echo " gh run watch # watch release workflow"

echo "Waiting for CI checks to appear..."
for i in $(seq 1 30); do
if gh pr checks --json name 2>/dev/null | grep -q name; then break; fi
sleep 2
done
echo "Watching CI checks..."
gh pr checks --watch --fail-fast

echo "CI passed. Merging..."
gh pr merge --squash --delete-branch

git checkout main
git pull --ff-only origin main

echo "Watching release workflow..."
gh run watch

# ─── Cleanup ─────────────────────────────────────────────────────

Expand Down
Loading