Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion scripts/release/publish.sh
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ if which gh >/dev/null; then
git branch -D "$BRANCH"

# Wait for CI to complete
./wait-for-pr.sh "$BRANCH"
. "$(dirname "$0")/wait-for-pr.sh" "$BRANCH"
if ! gh pr checks --fail-fast --watch; then
echo 'CI failed. Cannot continue with release.'
gh pr view "$BRANCH" --web
Expand Down
2 changes: 1 addition & 1 deletion scripts/release/version.sh
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ if which gh 2>/dev/null 1>/dev/null; then
git switch "$BASE_BRANCH"
git branch -D "$BRANCH"

./wait-for-pr.sh "$BRANCH"
. "$(dirname "$0")/wait-for-pr.sh" "$BRANCH"
while [ "$(gh pr view "$BRANCH" --json state -q .state)" != 'MERGED' ]; do
sleep 3 # Wait for GitHub to auto-merge the PR
done
Expand Down