惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

N
Netflix TechBlog - Medium
G
Google Developers Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
T
The Blog of Author Tim Ferriss
Microsoft Azure Blog
Microsoft Azure Blog
GbyAI
GbyAI
L
LangChain Blog
云风的 BLOG
云风的 BLOG
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
aimingoo的专栏
aimingoo的专栏
P
Proofpoint News Feed
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
小众软件
小众软件
WordPress大学
WordPress大学
A
About on SuperTechFans
大猫的无限游戏
大猫的无限游戏
C
Check Point Blog
月光博客
月光博客
Stack Overflow Blog
Stack Overflow Blog
美团技术团队
Jina AI
Jina AI
T
Tailwind CSS Blog
Google DeepMind News
Google DeepMind News
D
Docker

Recent Commits to openclaw:main

test: merge chat side-result checks · openclaw/openclaw@ddd2c2a test: merge cron history checks · openclaw/openclaw@f7eb746 test: merge responsive navigation shell checks · openclaw/openclaw@c2e4b47 docs(changelog): add codex oauth fixes · openclaw/openclaw@628e6cd test: merge navigation routing cases · openclaw/openclaw@5d8cecb Tests: mock channel registry bundled fallback · openclaw/openclaw@2b08233 Secrets: avoid broad web search discovery for single plugin config · openclaw/openclaw@a464f59 test: merge config view browser checks · openclaw/openclaw@20cf511 fix(status): align oauth health with runtime · openclaw/openclaw@eed7116 feat: add macOS screen snapshots for monitor preview (#67954) thanks … · openclaw/openclaw@f377db1 fix: report shared auth scopes in hello-ok (#67810) thanks @BunsDev · openclaw/openclaw@0b6c39b Auto-reply: avoid eager bundled route fallback · openclaw/openclaw@3ea1bf4 Tests: narrow session binding contract setup · openclaw/openclaw@54e4e16 fix(macOS): enable undo/redo in webchat composer text input (#34962) · openclaw/openclaw@00951dc Tests: speed up channel setup promotion · openclaw/openclaw@82b529a Docs: refresh agent instructions · openclaw/openclaw@5775fe2 fix(auth): serialize OAuth refresh across agents to fix #26322 (#67876) · openclaw/openclaw@8e79080 test: allow ollama public surface boundary test · openclaw/openclaw@7d4f1a6 Docs: add test performance guardrails · openclaw/openclaw@89706d3 Tests: restore context-engine usage proof · openclaw/openclaw@e4c4f95 Tests: slim context engine runtime coverage · openclaw/openclaw@74c198f ci: retry failed custom checkouts · openclaw/openclaw@0ee5baf test: trim duplicate provider auth onboarding cases · openclaw/openclaw@1ffc02e matrix: fix sessions_spawn --thread subagent session spawning (#67643) · openclaw/openclaw@1ce2596 test: reduce auth choice fixture churn · openclaw/openclaw@857b9cd test: mock health status config boundaries · openclaw/openclaw@9d5ab4a test: mock onboard config io boundary · openclaw/openclaw@299694d test: mock legacy state plugin boundaries · openclaw/openclaw@2713089 test: mock channel install boundaries · openclaw/openclaw@b945248 test: mock doctor preview channel boundaries · openclaw/openclaw@b1a3ad4
fix(ci): resolve merged Mantis proof PR refs · openclaw/o...
obviyus · 2026-05-11 · via Recent Commits to openclaw:main

@@ -167,6 +167,18 @@ jobs:

167167

repo,

168168

pull_number: issue.number,

169169

});

170+

let mergedBaseline = "";

171+

let mergedCandidate = "";

172+

if (pr.merged) {

173+

const { data: commits } = await github.rest.pulls.listCommits({

174+

owner,

175+

repo,

176+

pull_number: issue.number,

177+

per_page: 100,

178+

});

179+

mergedCandidate = pr.merge_commit_sha || commits.at(-1)?.sha || "";

180+

mergedBaseline = mergedCandidate && commits.length > 0 ? `${mergedCandidate}~${commits.length}` : "";

181+

}

170182

const baselineMatch = body.match(/(?:baseline|base)[\s:=]+([^\s`]+)/i);

171183

const candidateMatch = body.match(/(?:candidate|head)[\s:=]+([^\s`]+)/i);

172184

const providerMatch = body.match(/(?:provider|crabbox_provider)[\s:=]+([^\s`]+)/i);

@@ -180,10 +192,10 @@ jobs:

180192

const candidate =

181193

rawCandidate && !["head", "pr", "pr-head"].includes(rawCandidate.toLowerCase())

182194

? rawCandidate

183-

: pr.head.sha;

195+

: mergedCandidate || pr.head.sha;

184196185197

setOutput("should_run", "true");

186-

setOutput("baseline_ref", baselineMatch?.[1] || "main");

198+

setOutput("baseline_ref", baselineMatch?.[1] || mergedBaseline || "main");

187199

setOutput("candidate_ref", candidate);

188200

setOutput("pr_number", String(issue.number));

189201

setOutput("instructions", body);

@@ -219,19 +231,26 @@ jobs:

219231

BASELINE_REF: ${{ needs.resolve_request.outputs.baseline_ref }}

220232

CANDIDATE_REF: ${{ needs.resolve_request.outputs.candidate_ref }}

221233

GH_TOKEN: ${{ github.token }}

234+

PR_NUMBER: ${{ needs.resolve_request.outputs.pr_number }}

222235

shell: bash

223236

run: |

224237

set -euo pipefail

225238226239

git fetch --no-tags origin +refs/heads/main:refs/remotes/origin/main

240+

if [[ -n "${PR_NUMBER:-}" ]]; then

241+

git fetch --no-tags origin "+refs/pull/${PR_NUMBER}/head:refs/remotes/origin/pr/${PR_NUMBER}" || true

242+

fi

227243228244

validate_ref() {

229245

local label="$1"

230246

local input_ref="$2"

231247

local revision=""

232248

local reason=""

233249234-

revision="$(git rev-parse "${input_ref}^{commit}")"

250+

if ! revision="$(git rev-parse --verify "${input_ref}^{commit}" 2>/dev/null)"; then

251+

echo "${label} ref '${input_ref}' is not available in the workflow checkout." >&2

252+

exit 1

253+

fi

235254

if git merge-base --is-ancestor "$revision" refs/remotes/origin/main; then

236255

reason="main-ancestor"

237256

elif git tag --points-at "$revision" | grep -Eq '^v'; then