From 45c3ede36e479377eb7ebc70d375f341cb254a01 Mon Sep 17 00:00:00 2001 From: jth-nw Date: Mon, 16 Mar 2026 11:57:15 -0500 Subject: [PATCH] fix: remove emojis from progress comment, use consistent headers - "Fix in progress:" header while working - "Fix complete:" header when done - No emojis anywhere in the progress comment Co-Authored-By: Claude Opus 4.6 --- .claude/skills/doc-pr-fix/SKILL.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.claude/skills/doc-pr-fix/SKILL.md b/.claude/skills/doc-pr-fix/SKILL.md index c555f1672e..8b10f9578f 100644 --- a/.claude/skills/doc-pr-fix/SKILL.md +++ b/.claude/skills/doc-pr-fix/SKILL.md @@ -61,7 +61,7 @@ Then post a PR comment mirroring your task list so the writer can see what you'r ```bash PROGRESS_COMMENT_ID=$(gh pr comment "$PR_NUMBER" --body "$(cat <<'EOF' -**Working on it...** ✏️ +**Fix in progress:** - [ ] Fix Vale issues in `path/to/file.md` (N issues) - [ ] Fix Vale issues in `path/to/other.md` (N issues) @@ -120,9 +120,8 @@ Replace the progress comment with a completion summary. Don't post a separate co ```bash gh api repos/{owner}/{repo}/issues/comments/$PROGRESS_COMMENT_ID \ -X PATCH -f body="$(cat <<'EOF' -**Fixes applied** ✅ +**Fix complete:** -- [x] Read PR diff and review comments - [x] Fix Vale issues in `path/to/file.md` (N issues) - [x] Fix Vale issues in `path/to/other.md` (N issues) - [x] Verify changes