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

docs: Itemizes supported prefix tags when creating pull requests #54

Merged
merged 1 commit into from
Jan 8, 2020
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
11 changes: 11 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,17 @@ To contribute code to Diez, please submit a pull request to the Diez monorepo. Y

- Use [conventional commits](https://github.com/bcoe/conventional-changelog-standard/blob/master/convention.md) (Angular style) to describe it.
- Be sure to prefix your PR title with `feat:`, `fix:`, `perf:`, etc. if you want your change to be included in the Diez changelog.
- The following prefix tags are supported:
- `feat:` for Features
- `fix:` for Bug Fixes
- `perf:` for Performance Improvements
- `revert:` for Reverts
- `docs:` for Documentation
- `style:` for Styles
- `refactor:` for Code Refactoring
- `test:` for Tests
- `build:` for Build System
- `ci:` for Continuous Integration
- Describe the intent and impact of your change in its description using the imperative present tense.
- Outline any breaking changes at the bottom of its description with the `BREAKING CHANGE:` prefix.
- Be branched from a recent commit to `master`.
Expand Down