From 507d67c2da28b899ee6bafd41434f71684ed1ed8 Mon Sep 17 00:00:00 2001 From: Oliver Wolff <23139298+cuioss@users.noreply.github.com> Date: Sun, 19 Jul 2026 15:53:57 +0200 Subject: [PATCH] chore(release-skill): apply skip-bot-review label on release PR Match the other cuioss release skills: the mechanical release PR should carry the skip-bot-review label to skip automated bot review. Co-Authored-By: Claude --- .claude/skills/release/SKILL.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.claude/skills/release/SKILL.md b/.claude/skills/release/SKILL.md index 53fc5e4..43d1c00 100644 --- a/.claude/skills/release/SKILL.md +++ b/.claude/skills/release/SKILL.md @@ -102,11 +102,16 @@ SonarCloud) are all dynamic endpoints — there is **no** per-release badge to h git add .github/project.yml git commit -m "chore(release): prepare release " git push -u origin chore/release_ +gh label create skip-bot-review --repo cuioss/cui-java-tools --description "Skip automated bot review" --color ededed 2>/dev/null || true gh pr create --repo cuioss/cui-java-tools --base main \ --title "chore(release): prepare release " \ + --label "skip-bot-review" \ --body "Bump current-version to . Triggers the automated Release workflow on merge." ``` +The mechanical release PR carries the `skip-bot-review` label so the automated bot review is +skipped (the label-ensure line above creates it if it does not already exist). + Use the project commit convention: `Co-Authored-By: Claude ` (no model name / no "Generated with Claude Code" footer).