From f53bf42739d49375ab689cb7bac3e6e8317b8aca Mon Sep 17 00:00:00 2001 From: Chris Trzesniewski Date: Wed, 6 May 2026 11:39:22 +0200 Subject: [PATCH 1/2] chore: add tracker config and ignore *.local files Add `.claude/tracker.yaml` so Claude skills (plan-feature, create-pr, etc.) know this repo uses GitHub issues without per-invocation configuration. Add `*.local` / `*.local.*` to `.gitignore` so personal overrides like `.claude/settings.local.json` stay out of git. --- .claude/tracker.yaml | 5 +++++ .gitignore | 2 ++ 2 files changed, 7 insertions(+) create mode 100644 .claude/tracker.yaml diff --git a/.claude/tracker.yaml b/.claude/tracker.yaml new file mode 100644 index 000000000..dec86a0e7 --- /dev/null +++ b/.claude/tracker.yaml @@ -0,0 +1,5 @@ +tracker: + type: github + github: + repo: benchmark-action/github-action-benchmark + in_review_label: in-review diff --git a/.gitignore b/.gitignore index 993e966be..b050700fc 100644 --- a/.gitignore +++ b/.gitignore @@ -14,3 +14,5 @@ target/ jmh-result.json .env +*.local +*.local.* From a7622e766a6fb3542fb92724c7b3a9704e45c1a5 Mon Sep 17 00:00:00 2001 From: Chris Trzesniewski Date: Wed, 6 May 2026 11:41:44 +0200 Subject: [PATCH 2/2] docs(tracker): add header comment explaining the file's purpose Other contributors won't necessarily recognise the file as Claude-skill config. Spell out what it is, who reads it, where the schema lives, and that committing it is safe (no secrets). --- .claude/tracker.yaml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/.claude/tracker.yaml b/.claude/tracker.yaml index dec86a0e7..feec21e25 100644 --- a/.claude/tracker.yaml +++ b/.claude/tracker.yaml @@ -1,3 +1,17 @@ +# Tracker config for Claude Code skills. +# +# Tells Claude skills (plan-feature, create-pr, resolve-pr-comments, etc.) +# which issue tracker this repo uses, so they can fetch tickets, link them +# in PRs, and transition statuses without per-invocation prompts. +# +# Resolution order: this file first, then ~/.claude/tracker.yaml as a +# fallback. Schema and supported backends (jira, linear, github, clickup) +# are documented at: +# https://github.com/ktrz/skills/blob/main/_shared/references/tracker.md +# +# Safe to commit: contains no secrets — only the public repo slug and the +# label name used to mark issues as "in review". + tracker: type: github github: