Skip to content

Commit 50e8923

Browse files
authored
Add explanation of available types for Conventional Commits (#3868)
1 parent d0a3ea9 commit 50e8923

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

.github/pull_request_template.md

+13
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,19 @@ We are using [Conventional Commits](https://www.conventionalcommits.org/en/v1.0.
33
#### Title
44
`<type>[optional scope]: <description>` e.g.: fix(QSim): Correctly calculate travel times on links
55

6+
Available types:
7+
- feat: A new feature
8+
- fix: A bug fix
9+
- docs: Documentation only changes
10+
- style: Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc)
11+
- refactor: A code change that neither fixes a bug nor adds a feature
12+
- perf: A code change that improves performance
13+
- test: Adding missing tests or correcting existing tests
14+
- build: Changes that affect the build system or external dependencies (example scopes: gulp, broccoli, npm)
15+
- ci: Changes to our CI configuration files and scripts (example scopes: Travis, Circle, BrowserStack, SauceLabs)
16+
- chore: Other changes that don't modify src or test files
17+
- revert: Reverts a previous commit
18+
619
#### Body
720
Optionally, describe the change in more detail.
821

0 commit comments

Comments
 (0)