Skip to content

Commit 8e95a44

Browse files
ymodlinclaude
andauthored
Ignore scripts/, CLAUDE.md, .gitignore in auto-tag filter (#373)
* Use PAT_TOKEN for push to bypass ruleset protection * Ignore scripts/, CLAUDE.md, .gitignore in version bump check Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 287e105 commit 8e95a44

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

.github/workflows/auto-tag.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ jobs:
1818
with:
1919
ref: dev
2020
fetch-depth: 0
21+
token: ${{ secrets.PAT_TOKEN }}
2122

2223
- name: Branch guard
2324
run: |
@@ -51,7 +52,7 @@ jobs:
5152
fi
5253
5354
# Filter out ignored paths
54-
meaningful=$(echo "$changed" | grep -v -E '^(\.claude/|\.github/|test/|docs/)' || true)
55+
meaningful=$(echo "$changed" | grep -v -E '^(\.claude/|\.github/|test/|docs/|scripts/|CLAUDE\.md$|\.gitignore$)' || true)
5556
5657
if [ -z "$meaningful" ]; then
5758
echo "Only ignored-folder changes since $tag:"

0 commit comments

Comments
 (0)