Skip to content

Commit be6703b

Browse files
authored
chore: add tracker config and ignore *.local files (#353)
### Description - Add `.claude/tracker.yaml` declaring this repo as GitHub-tracker so Claude skills (plan-feature, create-pr, etc.) can dispatch correctly without per-invocation configuration. Schema documented in [the skills' tracker reference](https://github.com/ktrz/skills/blob/main/_shared/references/tracker.md). - Add `*.local` and `*.local.*` patterns to `.gitignore` so personal overrides like `.claude/settings.local.json` stay out of git. ### Test scenario - [ ] `git check-ignore -v .claude/settings.local.json` reports `.gitignore:*.local.*` as the matching rule. - [ ] `cat .claude/tracker.yaml` shows the GitHub-typed config pointing at this repo. - [ ] No code paths affected — config-only change. <!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit * **Chores** * Added tracker configuration for GitHub integration. * Updated `.gitignore` to exclude local configuration files (*.local and *.local.*). <!-- end of auto-generated comment: release notes by coderabbit.ai -->
1 parent d4f68d1 commit be6703b

2 files changed

Lines changed: 21 additions & 0 deletions

File tree

.claude/tracker.yaml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# Tracker config for Claude Code skills.
2+
#
3+
# Tells Claude skills (plan-feature, create-pr, resolve-pr-comments, etc.)
4+
# which issue tracker this repo uses, so they can fetch tickets, link them
5+
# in PRs, and transition statuses without per-invocation prompts.
6+
#
7+
# Resolution order: this file first, then ~/.claude/tracker.yaml as a
8+
# fallback. Schema and supported backends (jira, linear, github, clickup)
9+
# are documented at:
10+
# https://github.com/ktrz/skills/blob/main/_shared/references/tracker.md
11+
#
12+
# Safe to commit: contains no secrets — only the public repo slug and the
13+
# label name used to mark issues as "in review".
14+
15+
tracker:
16+
type: github
17+
github:
18+
repo: benchmark-action/github-action-benchmark
19+
in_review_label: in-review

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,3 +14,5 @@
1414
target/
1515
jmh-result.json
1616
.env
17+
*.local
18+
*.local.*

0 commit comments

Comments
 (0)