Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add commit message templates #9

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
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
13 changes: 13 additions & 0 deletions .github/COMMIT_MESSAGE_TEMPLATE/chore.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
chore(scope): Summarize the change (updating grunt tasks etc; no production code change) in less than 50 characters

Because:
- Explain the reasons you made this change
- Make a new bullet for each reason
- Each line should be under 72 characters

Explain exactly what was done in this commit with more depth than the
50 character subject line. Remember to wrap at 72 characters!

Include any additional notes, relevant links, or co-authors.

(scope) is optional
13 changes: 13 additions & 0 deletions .github/COMMIT_MESSAGE_TEMPLATE/docs.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
docs(scope): Summarize the change to the documentation in less than 50 characters

Because:
- Explain the reasons you made this change
- Make a new bullet for each reason
- Each line should be under 72 characters

Explain exactly what was done in this commit with more depth than the
50 character subject line. Remember to wrap at 72 characters!

Include any additional notes, relevant links, or co-authors.

(scope) is optional
13 changes: 13 additions & 0 deletions .github/COMMIT_MESSAGE_TEMPLATE/feat.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
feat(scope): Summarize the change (new feature for the user, not a new feature for build script) in less than 50 characters

Because:
- Explain the reasons you made this change
- Make a new bullet for each reason
- Each line should be under 72 characters

Explain exactly what was done in this commit with more depth than the
50 character subject line. Remember to wrap at 72 characters!

Include any additional notes, relevant links, or co-authors.

(scope) is optional
13 changes: 13 additions & 0 deletions .github/COMMIT_MESSAGE_TEMPLATE/fix.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
fix(scope): Summarize the change (bug fix for the user, not a fix to a build script) in less than 50 characters

Because:
- Explain the reasons you made this change
- Make a new bullet for each reason
- Each line should be under 72 characters

Explain exactly what was done in this commit with more depth than the
50 character subject line. Remember to wrap at 72 characters!

Include any additional notes, relevant links, or co-authors.

(scope) is optional
13 changes: 13 additions & 0 deletions .github/COMMIT_MESSAGE_TEMPLATE/refactor.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
refactor(scope): Summarize the change (refactoring production code, eg. renaming a variable) in less than 50 characters

Because:
- Explain the reasons you made this change
- Make a new bullet for each reason
- Each line should be under 72 characters

Explain exactly what was done in this commit with more depth than the
50 character subject line. Remember to wrap at 72 characters!

Include any additional notes, relevant links, or co-authors.

(scope) is optional
13 changes: 13 additions & 0 deletions .github/COMMIT_MESSAGE_TEMPLATE/style.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
style(scope): Summarize the change (formatting, missing semi colons, typo, etc; no production code change) in less than 50 characters

Because:
- Explain the reasons you made this change
- Make a new bullet for each reason
- Each line should be under 72 characters

Explain exactly what was done in this commit with more depth than the
50 character subject line. Remember to wrap at 72 characters!

Include any additional notes, relevant links, or co-authors.

(scope) is optional
13 changes: 13 additions & 0 deletions .github/COMMIT_MESSAGE_TEMPLATE/test.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
test(scope): Summarize the change (adding missing tests, refactoring tests; no production code change) in less than 50 characters

Because:
- Explain the reasons you made this change
- Make a new bullet for each reason
- Each line should be under 72 characters

Explain exactly what was done in this commit with more depth than the
50 character subject line. Remember to wrap at 72 characters!

Include any additional notes, relevant links, or co-authors.

(scope) is optional