Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,14 @@ failures before treating the work as done:

Do not consider a push complete until its CI run is green (or the failure is
understood and explicitly accepted by the user).

## PR title convention for CI-only PRs

A PR whose diff is confined entirely to files under `.github/workflows/` gets a
title starting with `CI: ` (capital, colon, space). A PR that's CI-*motivated*
but also touches a real file elsewhere (a `bin/` script a workflow calls, a
linter's `Makefile` wiring, a submodule, etc.) is NOT CI-only under this
reading, even though CI is the reason it exists — don't stretch the prefix to
cover those. Check the actual file list
(`gh pr view <n> --json files --jq '.files[].path'`) before applying it, don't
guess from the title/description alone.
Loading