Skip to content
Merged
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
1 change: 1 addition & 0 deletions AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -212,6 +212,7 @@ The repository enforces semantic PR titles via [.github/workflows/pr-title.yaml]
- Bad: `fix: E2E nightly ...` (capital E fails the regex and blocks the PR immediately).
- The check runs on PR open/edit/synchronize and validates the PR title (and frequently the head commit message).
- Dependabot PRs are automatically exempted by the workflow.
- Always commit with `-s` (`git commit -s` or `git commit --amend -s`) so DCO passes. Never leave unexpanded shell like `$(git config user.name)` in the `Signed-off-by` line.

When creating branches, commits, or PRs, make the first line a valid semantic title so the gate passes on the first attempt. This avoids immediate CI failures and repeated title edits.

Expand Down
Loading