Skip to content

Commit 0bd145f

Browse files
docs: upgrade contributing.md guide (#1133)
* docs: upgraded CONTRIBUTING.md instructions
1 parent f2bcaa9 commit 0bd145f

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

CONTRIBUTING.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,3 +12,20 @@ The base version represents the MAJOR and MINOR parts of [SemVer](https://semver
1212

1313
- `main` contains the latest sources. Each merge there triggers a deploy to `nuget.org`.
1414
- All versions on `nuget.org` have a matching GitHub release/tag.
15+
16+
## Commits and PR title
17+
18+
- Please use [conventional commits](https://www.conventionalcommits.org/en/v1.0.0/) to name your commits and PR title.
19+
We use [action-semantic-pull-request](https://github.com/amannn/action-semantic-pull-request?tab=readme-ov-file#configuration) to enforce this policy, feel free to have a closer look.
20+
- Available prefixes:
21+
- `feat:` A new feature
22+
- `fix:` A bug fix
23+
- `docs:` Documentation only changes
24+
- `style:` Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc)
25+
- `refactor:` A code change that neither fixes a bug nor adds a feature
26+
- `perf:` A code change that improves performance
27+
- `test:` Adding missing tests or correcting existing tests
28+
- `build:` Changes that affect the build system or external dependencies (example scopes: gulp, broccoli, npm)
29+
- `ci:` Changes to our CI configuration files and scripts (example scopes: Travis, Circle, BrowserStack, SauceLabs)
30+
- `chore:` Other changes that don't modify src or test files
31+
- `revert:` Reverts a previous commit

0 commit comments

Comments
 (0)