This repository has been archived by the owner on Dec 16, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
improve contributing guide / PR template (#5185)
* improve contributing guide / PR template * update coverage config * update template
- Loading branch information
Showing
3 changed files
with
118 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,25 @@ | ||
<!-- Please reference the issue number here --> | ||
<!-- To ensure we can review your pull request promptly please complete this template entirely. --> | ||
|
||
<!-- Please reference the issue number here. You can replace "Fixes" with "Closes" if it makes more sense. --> | ||
Fixes # . | ||
|
||
Changes proposed in this pull request: | ||
|
||
- | ||
<!-- Please list all changes/additions here. --> | ||
- | ||
|
||
<!-- To ensure we can review your pull request promptly please ensure ALL GitHub Actions workflows pass --> | ||
## Before submitting | ||
|
||
<!-- Please complete this checklist BEFORE submitting your PR to speed along the review process. --> | ||
- [ ] I've read and followed all steps in the [Making a pull request](https://github.com/allenai/allennlp/blob/main/CONTRIBUTING.md#making-a-pull-request) | ||
section of the `CONTRIBUTING` docs. | ||
- [ ] I've updated or added any relevant docstrings following the syntax described in the | ||
[Writing docstrings](https://github.com/allenai/allennlp/blob/main/CONTRIBUTING.md#writing-docstrings) section of the `CONTRIBUTING` docs. | ||
- [ ] If this PR fixes a bug, I've added a test that will fail without my fix. | ||
- [ ] If this PR adds a new feature, I've added tests that sufficiently cover my new functionality. | ||
|
||
## After submitting | ||
|
||
<!-- Please complete this checklist AFTER submitting your PR to speed along the review process. --> | ||
- [ ] All GitHub Actions jobs for my pull request have passed. | ||
- [ ] **`codecov/patch`** reports high test coverage (at least 90%). | ||
You can find this under the "Actions" tab of the pull request once the other checks have finished. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,6 +8,7 @@ coverage: | |
project: | ||
default: | ||
threshold: 1% | ||
informational: true | ||
changes: false | ||
comment: false | ||
ignore: | ||
|