From 18ad749a8a9ab93817a81b65fdd980d3de8abb0b Mon Sep 17 00:00:00 2001 From: jth-nw Date: Wed, 1 Apr 2026 11:06:02 -0500 Subject: [PATCH] fix: include claude[bot] in vale-autofix bot-check to prevent re-trigger loop Phase 2/3 commits authored by claude[bot] were not recognized by the bot-check guard, causing the workflow to re-trigger on its own pushes. Co-Authored-By: Claude Opus 4.6 (1M context) --- .github/workflows/vale-autofix.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/vale-autofix.yml b/.github/workflows/vale-autofix.yml index 4d057d1f1a..552d272f86 100644 --- a/.github/workflows/vale-autofix.yml +++ b/.github/workflows/vale-autofix.yml @@ -29,7 +29,7 @@ jobs: # Get the latest commit author on the PR head AUTHOR=$(gh api repos/${{ github.repository }}/commits/${{ github.event.pull_request.head.sha }} --jq '.commit.author.name') echo "Latest commit author: $AUTHOR" - if [ "$AUTHOR" = "github-actions[bot]" ]; then + if [ "$AUTHOR" = "github-actions[bot]" ] || [ "$AUTHOR" = "claude[bot]" ]; then echo "skip=true" >> "$GITHUB_OUTPUT" else echo "skip=false" >> "$GITHUB_OUTPUT"