-
-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathcommit-template.txt
More file actions
82 lines (65 loc) · 4.2 KB
/
commit-template.txt
File metadata and controls
82 lines (65 loc) · 4.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
# Conventional Commit Template
#
# Format: <type>(<scope>): <subject>
#
# Types:
# feat: New feature
# fix: Bug fix
# docs: Documentation only changes
# style: Code style changes (formatting, missing semi-colons, etc)
# refactor: Code refactoring (neither fixes a bug nor adds a feature)
# perf: Performance improvement
# test: Adding or updating tests
# build: Changes to build system or dependencies
# ci: Changes to CI/CD configuration
# chore: Other changes that don't modify src or test files
# revert: Revert a previous commit
#
# Scope:
# Use kebab-case (e.g., workflows, composite-actions, project-sync)
# Optional but recommended for clarity
#
# Subject:
# - Use imperative, present tense: "add" not "added" nor "adds"
# - Don't capitalize first letter
# - No period (.) at the end
# - Maximum 72 characters
#
# Example:
# feat(workflows): add claude-plan-to-issues workflow
#
# ─────────────────────────────────────────────────────────────────
<type>(<scope>): <subject>
# ─────────────────────────────────────────────────────────────────
# Context
# ─────────────────────────────────────────────────────────────────
# Why is this change needed? What problem does it solve?
# Reference any related issues: Closes #123, Relates to #456
Context:
# ─────────────────────────────────────────────────────────────────
# Testing
# ─────────────────────────────────────────────────────────────────
# How was this change tested? What tests were added or modified?
# Include manual testing steps if applicable
Testing:
# ─────────────────────────────────────────────────────────────────
# Reviewers
# ─────────────────────────────────────────────────────────────────
# Tag reviewers or leave blank for automatic assignment
# Format: @username
Reviewers:
# ─────────────────────────────────────────────────────────────────
# Breaking Changes (if any)
# ─────────────────────────────────────────────────────────────────
# Describe any breaking changes and migration steps
BREAKING CHANGE:
# ─────────────────────────────────────────────────────────────────
# Notes
# ─────────────────────────────────────────────────────────────────
# Additional notes, considerations, or follow-up tasks
# ─────────────────────────────────────────────────────────────────
# Attribution (Auto-Added)
# ─────────────────────────────────────────────────────────────────
# This commit was created using Claude Code automation
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <noreply@anthropic.com>