From bc4210524f0e844897df1d9b2f2db6f6d6278101 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 23 Mar 2026 01:47:00 +0000 Subject: [PATCH 1/2] Initial plan From 7d6879e36f46106036fdf90c1975bf3257d4e876 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 23 Mar 2026 01:48:33 +0000 Subject: [PATCH 2/2] fix(ci): fix commit message check and summary job name keys Co-authored-by: LucienSong <44640337+LucienSong@users.noreply.github.com> Agent-Logs-Url: https://github.com/ShellDAO/shell-chain/sessions/6930cd5f-0d8d-4d2b-97b0-13dff0279513 --- .github/workflows/pr-review.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/pr-review.yml b/.github/workflows/pr-review.yml index ce4815d..14ad0df 100644 --- a/.github/workflows/pr-review.yml +++ b/.github/workflows/pr-review.yml @@ -310,6 +310,10 @@ jobs: if echo "$msg" | grep -qE "^Merge "; then continue fi + # Skip known bot/agent auto-generated commits + if echo "$msg" | grep -qE "^Initial (plan|commit)$"; then + continue + fi if ! echo "$msg" | grep -qE "$PATTERN"; then echo "::error::Commit message does not follow conventional format: \"$msg\"" FAILED=1 @@ -388,7 +392,7 @@ jobs: results='${{ toJSON(needs) }}' failed=0 - for job in format lint test docs security_audit build commit_message_check pr_description_check; do + for job in format lint test docs security-audit build commit-message-check pr-description-check; do result=$(echo "$results" | python3 -c " import sys, json data = json.load(sys.stdin)