diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md index f7b6223c..0a6731b6 100644 --- a/.github/pull_request_template.md +++ b/.github/pull_request_template.md @@ -19,10 +19,13 @@ - [ ] Bug fix (non-breaking change which fixes an issue) - [ ] New feature (non-breaking change which adds functionality) - [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected) -- [ ] Test addition/modification (change that adds or modifies tests) -- [ ] Exercise solution (implementation of an exercise solution) +- [ ] Test (change that adds or modifies tests) - [ ] Documentation (change to documentation) -- [ ] Refactoring (improvement to code structure without changing functionality) +- [ ] Refactor (improvement to code structure without changing functionality) +- [ ] Style (code formatting changes that don't affect functionality; e.g. whitespace, missing semi-colons, etc) +- [ ] Build (changes to build system or external dependencies) +- [ ] CI (changes to continuous integration configuration files and scripts) +- [ ] Chore (other updates that don't affect production code) ## Checklist: diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 9bebe9b8..d6990988 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -42,7 +42,7 @@ git switch -c JIRA-1234 ### Install Dependencies (If Applicable) -Each exercise has its own dependencies, follow the instructions provided in the relevant README.md file. +Each exercise has its own dependencies; follow the instructions provided in the relevant README.md file. ## ✏️ Making Contributions