Some checks failed
ClawSweeper Dispatch / dispatch (push) Has been cancelled
CodeQL / Security High (actions) (push) Has been cancelled
CodeQL / Security High (channel-runtime-boundary) (push) Has been cancelled
CodeQL / Security High (core-auth-secrets) (push) Has been cancelled
CodeQL / Security High (mcp-process-tool-boundary) (push) Has been cancelled
CodeQL / Security High (network-ssrf-boundary) (push) Has been cancelled
CodeQL / Security High (plugin-trust-boundary) (push) Has been cancelled
CodeQL / Security High (process-exec-boundary) (push) Has been cancelled
Docs Sync Publish Repo / sync-publish-repo (push) Has been cancelled
Docs / docs (push) Has been cancelled
OpenClaw Stable Main Closeout / Resolve stable release closeout inputs (push) Has been cancelled
OpenClaw Stable Main Closeout / Verify stable main closeout (push) Has been cancelled
Workflow Sanity / no-tabs (push) Has been cancelled
Workflow Sanity / actionlint (push) Has been cancelled
Workflow Sanity / generated-doc-baselines (push) Has been cancelled
CI / runner-admission (push) Has been cancelled
CI / preflight (push) Has been cancelled
CI / security-fast (push) Has been cancelled
CI / pnpm-store-warmup (push) Has been cancelled
CI / build-artifacts (push) Has been cancelled
CI / native-i18n (push) Has been cancelled
CI / ${{ matrix.check_name }} (push) Has been cancelled
CI / ${{ matrix.checkName }} (push) Has been cancelled
CI / checks-node-compat-node22 (push) Has been cancelled
CI / check-bundled-channel-config-metadata (push) Has been cancelled
CI / check-dependencies (push) Has been cancelled
CI / check-guards (push) Has been cancelled
CI / check-lint (push) Has been cancelled
CI / check-prod-types (push) Has been cancelled
CI / check-shrinkwrap (push) Has been cancelled
CI / check-test-types (push) Has been cancelled
CI / check-additional-boundaries-a (push) Has been cancelled
CI / check-additional-boundaries-bcd (push) Has been cancelled
CI / check-additional-extension-bundled (push) Has been cancelled
CI / check-additional-extension-channels (push) Has been cancelled
CI / check-additional-extension-package-boundary (push) Has been cancelled
CI / check-additional-runtime-topology-architecture (push) Has been cancelled
CI / check-session-accessor-boundary (push) Has been cancelled
CI / check-session-transcript-reader-boundary (push) Has been cancelled
CI / check-docs (push) Has been cancelled
CI / skills-python (push) Has been cancelled
CI / macos-swift (push) Has been cancelled
CI / ios-build (push) Has been cancelled
CI / ci-timings-summary (push) Has been cancelled
Native App Locale Refresh / Refresh native fa (push) Has been cancelled
Native App Locale Refresh / Refresh native fr (push) Has been cancelled
Native App Locale Refresh / Refresh native hi (push) Has been cancelled
Native App Locale Refresh / Refresh native id (push) Has been cancelled
Native App Locale Refresh / Refresh native it (push) Has been cancelled
Native App Locale Refresh / Refresh native ja-JP (push) Has been cancelled
Control UI Locale Refresh / plan (push) Has been cancelled
Control UI Locale Refresh / Refresh ${{ matrix.locale }} (push) Has been cancelled
Control UI Locale Refresh / Commit control UI locale refresh (push) Has been cancelled
Live Media Runner Image / Build live media runner image (push) Has been cancelled
Native App Locale Refresh / Refresh native ar (push) Has been cancelled
Native App Locale Refresh / Refresh native de (push) Has been cancelled
Native App Locale Refresh / Refresh native es (push) Has been cancelled
Native App Locale Refresh / Refresh native ko (push) Has been cancelled
Native App Locale Refresh / Refresh native nl (push) Has been cancelled
Native App Locale Refresh / Refresh native pl (push) Has been cancelled
Native App Locale Refresh / Refresh native pt-BR (push) Has been cancelled
Native App Locale Refresh / Refresh native ru (push) Has been cancelled
Native App Locale Refresh / Refresh native sv (push) Has been cancelled
Native App Locale Refresh / Refresh native th (push) Has been cancelled
Native App Locale Refresh / Refresh native tr (push) Has been cancelled
Native App Locale Refresh / Refresh native uk (push) Has been cancelled
Native App Locale Refresh / Refresh native vi (push) Has been cancelled
Native App Locale Refresh / Refresh native zh-CN (push) Has been cancelled
Native App Locale Refresh / Refresh native zh-TW (push) Has been cancelled
Native App Locale Refresh / Commit native locale refresh (push) Has been cancelled
Plugin Init Scaffold Validation / Validate provider scaffold (push) Has been cancelled
Plugin NPM Release / preview_plugins_npm (push) Has been cancelled
Plugin NPM Release / Validate release publish approval (push) Has been cancelled
Plugin NPM Release / preview_plugin_pack (push) Has been cancelled
Plugin NPM Release / publish_plugins_npm (push) Has been cancelled
Sandbox Common Smoke / sandbox-common-smoke (push) Has been cancelled
Website Installer Sync / static (push) Has been cancelled
Website Installer Sync / linux-docker (push) Has been cancelled
Website Installer Sync / macos-installer (push) Has been cancelled
Website Installer Sync / windows-installer (push) Has been cancelled
Website Installer Sync / sync-website (push) Has been cancelled
Adolf is a fork/vendored clone of github.com/openclaw/openclaw (v2026.6.11), free to diverge. Tree copied sans upstream .git; upstream remote added for future syncs. Node pinned to 24 (.nvmrc); engines already require >=22.19. Preserves docs/ARCHITECTURE.md. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01LeqyaxJF2nbRXJtae2kNB2
341 lines
10 KiB
Bash
341 lines
10 KiB
Bash
checkout_prep_branch() {
|
|
local pr="$1"
|
|
require_artifact .local/prep-context.env
|
|
# shellcheck disable=SC1091
|
|
source .local/prep-context.env
|
|
|
|
local prep_branch
|
|
prep_branch=$(resolve_prep_branch_name "$pr")
|
|
git checkout "$prep_branch"
|
|
}
|
|
|
|
resolve_prep_branch_name() {
|
|
local pr="$1"
|
|
require_artifact .local/prep-context.env
|
|
# shellcheck disable=SC1091
|
|
source .local/prep-context.env
|
|
|
|
local prep_branch="${PREP_BRANCH:-pr-$pr-prep}"
|
|
if ! git show-ref --verify --quiet "refs/heads/$prep_branch"; then
|
|
echo "Expected prep branch $prep_branch not found. Run prepare-init first."
|
|
exit 1
|
|
fi
|
|
|
|
printf '%s\n' "$prep_branch"
|
|
}
|
|
|
|
verify_prep_branch_matches_prepared_head() {
|
|
local pr="$1"
|
|
local prepared_head_sha="$2"
|
|
|
|
local prep_branch
|
|
prep_branch=$(resolve_prep_branch_name "$pr")
|
|
local prep_branch_head_sha
|
|
prep_branch_head_sha=$(git rev-parse "refs/heads/$prep_branch")
|
|
if [ "$prep_branch_head_sha" = "$prepared_head_sha" ]; then
|
|
return 0
|
|
fi
|
|
|
|
echo "Local prep branch moved after prepare-push (branch=$prep_branch expected $prepared_head_sha, got $prep_branch_head_sha)."
|
|
if git merge-base --is-ancestor "$prepared_head_sha" "$prep_branch_head_sha" 2>/dev/null; then
|
|
echo "Unpushed local commits on prep branch:"
|
|
git log --oneline "${prepared_head_sha}..${prep_branch_head_sha}" | sed 's/^/ /' || true
|
|
echo "Run scripts/pr prepare-sync-head $pr to push them before merge."
|
|
else
|
|
echo "Prep branch no longer contains the prepared head. Re-run prepare-init."
|
|
fi
|
|
exit 1
|
|
}
|
|
|
|
prepare_init() {
|
|
local pr="$1"
|
|
enter_worktree "$pr" true
|
|
|
|
require_artifact .local/pr-meta.env
|
|
require_artifact .local/review.md
|
|
|
|
if [ ! -s .local/review.json ]; then
|
|
echo "WARNING: .local/review.json is missing; structured findings are expected."
|
|
fi
|
|
|
|
# shellcheck disable=SC1091
|
|
source .local/pr-meta.env
|
|
|
|
local json
|
|
json=$(pr_meta_json "$pr")
|
|
|
|
local head
|
|
head=$(printf '%s\n' "$json" | jq -r .headRefName)
|
|
local pr_head_sha_before
|
|
pr_head_sha_before=$(printf '%s\n' "$json" | jq -r .headRefOid)
|
|
|
|
if [ -n "${PR_HEAD:-}" ] && [ "$head" != "$PR_HEAD" ]; then
|
|
echo "PR head branch changed from $PR_HEAD to $head. Re-run review-pr."
|
|
exit 1
|
|
fi
|
|
|
|
git fetch origin "pull/$pr/head:pr-$pr" --force
|
|
git checkout -B "pr-$pr-prep" "pr-$pr"
|
|
git fetch origin main
|
|
|
|
# Security: shell-escape values to prevent command injection via malicious branch names.
|
|
printf '%s=%q\n' \
|
|
PR_NUMBER "$pr" \
|
|
PR_HEAD "$head" \
|
|
PR_HEAD_SHA_BEFORE "$pr_head_sha_before" \
|
|
PREP_BRANCH "pr-$pr-prep" \
|
|
PREP_STARTED_AT "$(date -u +%Y-%m-%dT%H:%M:%SZ)" \
|
|
> .local/prep-context.env
|
|
|
|
if [ ! -f .local/prep.md ]; then
|
|
cat > .local/prep.md <<EOF_PREP
|
|
# PR $pr prepare log
|
|
|
|
- Initialized prepare context from the PR head branch without rebasing on origin/main.
|
|
EOF_PREP
|
|
fi
|
|
|
|
echo "worktree=$PWD"
|
|
echo "branch=$(git branch --show-current)"
|
|
echo "wrote=.local/prep-context.env .local/prep.md"
|
|
}
|
|
|
|
prepare_validate_commit() {
|
|
local pr="$1"
|
|
enter_worktree "$pr" false
|
|
require_artifact .local/pr-meta.env
|
|
|
|
checkout_prep_branch "$pr"
|
|
|
|
# shellcheck disable=SC1091
|
|
source .local/pr-meta.env
|
|
local pr_number="${PR_NUMBER:-$pr}"
|
|
|
|
local subject
|
|
subject=$(git log -1 --pretty=%s)
|
|
|
|
if echo "$subject" | rg -qi "(^|[[:space:]])openclaw#$pr_number([[:space:]]|$)|\\(#$pr_number\\)"; then
|
|
echo "ERROR: prep commit subject should not include PR number metadata"
|
|
exit 1
|
|
fi
|
|
|
|
if echo "$subject" | rg -qi "thanks @"; then
|
|
echo "ERROR: prep commit subject should not include contributor thanks"
|
|
exit 1
|
|
fi
|
|
|
|
echo "prep commit subject validated: $subject"
|
|
}
|
|
|
|
prepare_push() {
|
|
local pr="$1"
|
|
enter_worktree "$pr" false
|
|
|
|
require_artifact .local/pr-meta.env
|
|
require_artifact .local/prep-context.env
|
|
require_artifact .local/gates.env
|
|
|
|
checkout_prep_branch "$pr"
|
|
|
|
# shellcheck disable=SC1091
|
|
source .local/pr-meta.env
|
|
# shellcheck disable=SC1091
|
|
source .local/prep-context.env
|
|
# shellcheck disable=SC1091
|
|
source .local/gates.env
|
|
|
|
local prep_head_sha
|
|
prep_head_sha=$(git rev-parse HEAD)
|
|
local local_prep_head_sha
|
|
|
|
local lease_sha
|
|
lease_sha=$(gh pr view "$pr" --json headRefOid --jq .headRefOid)
|
|
local push_result_env=".local/prepare-push-result.env"
|
|
|
|
verify_pr_head_branch_matches_expected "$pr" "$PR_HEAD"
|
|
push_prep_head_to_pr_branch "$pr" "$PR_HEAD" "$prep_head_sha" "$lease_sha" true "${DOCS_ONLY:-false}" "$push_result_env"
|
|
# shellcheck disable=SC1090
|
|
source "$push_result_env"
|
|
prep_head_sha="$PUSH_PREP_HEAD_SHA"
|
|
local_prep_head_sha="$PUSH_LOCAL_PREP_HEAD_SHA"
|
|
local mainline_base_sha
|
|
mainline_base_sha=$(git merge-base "$local_prep_head_sha" origin/main) || {
|
|
echo "Unable to resolve the prepared mainline base."
|
|
exit 1
|
|
}
|
|
if [ -s .local/prep-sync.env ]; then
|
|
# shellcheck disable=SC1091
|
|
source .local/prep-sync.env
|
|
local current_prep_tree
|
|
current_prep_tree=$(git rev-parse "${local_prep_head_sha}^{tree}")
|
|
if [ "${PREP_SYNC_TREE:-}" != "$current_prep_tree" ] || [ -z "${PREP_SYNC_MAINLINE_BASE_SHA:-}" ]; then
|
|
echo "Prepared PR head no longer matches the verified sync tree."
|
|
exit 1
|
|
fi
|
|
mainline_base_sha="$PREP_SYNC_MAINLINE_BASE_SHA"
|
|
rm -f .local/prep-sync.env
|
|
fi
|
|
local pushed_from_sha="$PUSHED_FROM_SHA"
|
|
local pr_head_sha_after="$PR_HEAD_SHA_AFTER_PUSH"
|
|
|
|
local contrib="${PR_AUTHOR:-}"
|
|
if [ -z "$contrib" ]; then
|
|
contrib=$(gh pr view "$pr" --json author --jq .author.login)
|
|
fi
|
|
local coauthor_email=""
|
|
if coauthor_email=$(resolve_contributor_coauthor_email "$contrib"); then
|
|
:
|
|
else
|
|
coauthor_email=""
|
|
fi
|
|
|
|
cat >> .local/prep.md <<EOF_PREP
|
|
- Gates passed and push succeeded to branch $PR_HEAD.
|
|
- Gate mode: ${GATES_MODE:-unknown}.
|
|
- Verified the remote PR head tree matches the local prep head.
|
|
EOF_PREP
|
|
|
|
# Security: shell-escape values to prevent command injection via propagated PR_HEAD.
|
|
printf '%s=%q\n' \
|
|
PR_NUMBER "$PR_NUMBER" \
|
|
PR_AUTHOR "$contrib" \
|
|
PR_URL "${PR_URL:-}" \
|
|
PR_HEAD "$PR_HEAD" \
|
|
PR_HEAD_SHA_BEFORE "$pushed_from_sha" \
|
|
PREP_HEAD_SHA "$prep_head_sha" \
|
|
LOCAL_PREP_HEAD_SHA "$local_prep_head_sha" \
|
|
PREP_MAINLINE_BASE_SHA "$mainline_base_sha" \
|
|
COAUTHOR_EMAIL "$coauthor_email" \
|
|
> .local/prep.env
|
|
|
|
ls -la .local/prep.md .local/prep.env >/dev/null
|
|
|
|
echo "prepare-push complete"
|
|
echo "pr_url=${PR_URL:-}"
|
|
echo "prep_branch=$(git branch --show-current)"
|
|
echo "prep_head_sha=$prep_head_sha"
|
|
echo "pr_head_sha=$pr_head_sha_after"
|
|
echo "artifacts=.local/prep.md .local/prep.env"
|
|
}
|
|
|
|
prepare_sync_head() {
|
|
local pr="$1"
|
|
enter_worktree "$pr" false
|
|
|
|
require_artifact .local/pr-meta.env
|
|
require_artifact .local/prep-context.env
|
|
|
|
checkout_prep_branch "$pr"
|
|
|
|
# shellcheck disable=SC1091
|
|
source .local/pr-meta.env
|
|
# shellcheck disable=SC1091
|
|
source .local/prep-context.env
|
|
|
|
local rebased=false
|
|
git fetch origin main
|
|
if ! git merge-base --is-ancestor origin/main HEAD; then
|
|
git rebase origin/main
|
|
rebased=true
|
|
if [ "${OPENCLAW_TESTBOX:-}" = "1" ]; then
|
|
rm -f .local/gates.env .local/prep.env
|
|
echo "Rebased head requires fresh exact-head hosted CI/Testbox evidence after push."
|
|
else
|
|
prepare_gates "$pr"
|
|
checkout_prep_branch "$pr"
|
|
fi
|
|
fi
|
|
|
|
local prep_head_sha
|
|
prep_head_sha=$(git rev-parse HEAD)
|
|
local local_prep_head_sha
|
|
|
|
local lease_sha
|
|
lease_sha=$(gh pr view "$pr" --json headRefOid --jq .headRefOid)
|
|
local push_result_env=".local/prepare-sync-result.env"
|
|
|
|
verify_pr_head_branch_matches_expected "$pr" "$PR_HEAD"
|
|
push_prep_head_to_pr_branch "$pr" "$PR_HEAD" "$prep_head_sha" "$lease_sha" false false "$push_result_env"
|
|
# shellcheck disable=SC1090
|
|
source "$push_result_env"
|
|
prep_head_sha="$PUSH_PREP_HEAD_SHA"
|
|
local_prep_head_sha="$PUSH_LOCAL_PREP_HEAD_SHA"
|
|
local mainline_base_sha
|
|
mainline_base_sha=$(git merge-base "$local_prep_head_sha" origin/main) || {
|
|
echo "Unable to resolve the prepared mainline base."
|
|
exit 1
|
|
}
|
|
local pushed_from_sha="$PUSHED_FROM_SHA"
|
|
local pr_head_sha_after="$PR_HEAD_SHA_AFTER_PUSH"
|
|
|
|
local contrib="${PR_AUTHOR:-}"
|
|
if [ -z "$contrib" ]; then
|
|
contrib=$(gh pr view "$pr" --json author --jq .author.login)
|
|
fi
|
|
local coauthor_email=""
|
|
if coauthor_email=$(resolve_contributor_coauthor_email "$contrib"); then
|
|
:
|
|
else
|
|
coauthor_email=""
|
|
fi
|
|
|
|
cat >> .local/prep.md <<EOF_PREP
|
|
- Prep head sync completed to branch $PR_HEAD.
|
|
- Rebased onto origin/main: $rebased.
|
|
- Verified the remote PR head tree matches the local prep head.
|
|
EOF_PREP
|
|
|
|
if [ "$rebased" = "true" ] && [ "${OPENCLAW_TESTBOX:-}" = "1" ]; then
|
|
local prep_sync_tree
|
|
prep_sync_tree=$(git rev-parse "${local_prep_head_sha}^{tree}")
|
|
# Preserve the verified local lineage because GraphQL creates a remote
|
|
# commit with the same tree but the old branch parent.
|
|
printf '%s=%q\n' \
|
|
PREP_SYNC_MAINLINE_BASE_SHA "$mainline_base_sha" \
|
|
PREP_SYNC_TREE "$prep_sync_tree" \
|
|
> .local/prep-sync.env
|
|
cat >> .local/prep.md <<EOF_PREP
|
|
- Cleared stale prepare artifacts. Wait for hosted CI/Testbox on $prep_head_sha, then run prepare-run again.
|
|
EOF_PREP
|
|
echo "prepare-sync-head complete"
|
|
echo "prep_head_sha=$prep_head_sha"
|
|
echo "Hosted CI/Testbox must pass for this exact head before prepare-run can continue."
|
|
return
|
|
fi
|
|
|
|
cat >> .local/prep.md <<EOF_PREP
|
|
- Prepare gates reran automatically when the sync rebase changed the prep head.
|
|
EOF_PREP
|
|
|
|
# Security: shell-escape values to prevent command injection via propagated PR_HEAD.
|
|
printf '%s=%q\n' \
|
|
PR_NUMBER "$PR_NUMBER" \
|
|
PR_AUTHOR "$contrib" \
|
|
PR_URL "${PR_URL:-}" \
|
|
PR_HEAD "$PR_HEAD" \
|
|
PR_HEAD_SHA_BEFORE "$pushed_from_sha" \
|
|
PREP_HEAD_SHA "$prep_head_sha" \
|
|
LOCAL_PREP_HEAD_SHA "$local_prep_head_sha" \
|
|
PREP_MAINLINE_BASE_SHA "$mainline_base_sha" \
|
|
COAUTHOR_EMAIL "$coauthor_email" \
|
|
> .local/prep.env
|
|
|
|
ls -la .local/prep.md .local/prep.env >/dev/null
|
|
|
|
echo "prepare-sync-head complete"
|
|
echo "pr_url=${PR_URL:-}"
|
|
echo "prep_branch=$(git branch --show-current)"
|
|
echo "prep_head_sha=$prep_head_sha"
|
|
echo "pr_head_sha=$pr_head_sha_after"
|
|
echo "artifacts=.local/prep.md .local/prep.env"
|
|
}
|
|
|
|
prepare_run() {
|
|
local pr="$1"
|
|
prepare_init "$pr"
|
|
prepare_gates "$pr"
|
|
prepare_push "$pr"
|
|
echo "prepare-run complete for PR #$pr"
|
|
echo "pr_url=${PR_URL:-}"
|
|
}
|