forked from joho/godotenv
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add pull request template and checklist require
- Loading branch information
Showing
2 changed files
with
44 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,28 @@ | ||
### Summary: | ||
[Provide a short description of the change] | ||
|
||
### Automation tests: | ||
[Provide link to the PR] | ||
|
||
### Screenshots (if UI changed): | ||
[Attach or link to any visuals] | ||
|
||
### Dependencies (if applicable) | ||
[Mention any dependencies like other PRs/services/issues that have to be considered by reviewer] | ||
|
||
### Toolbox commands (if applicable) | ||
[Mention any toolbox commands related to this PR and how they are used] | ||
|
||
--- | ||
### Things to be done before PR is sent for review (things are checked by the PR creator): | ||
|
||
- [ ] Functionality is covered with unit tests | ||
- [ ] Functionality is covered with automation tests | ||
- [ ] Functionality is verified on dev environment | ||
- [ ] Summary section is written | ||
- [ ] PR contains no breaking changes | ||
|
||
--- | ||
### Things to be done as a reviewer: | ||
- [ ] Code review done according to [Code review checklist](https://app.clickup.com/6633470/v/dc/6adzy-31521/6adzy-116481) - Reviewer 1 | ||
- [ ] Code review done according to [Code review checklist](https://app.clickup.com/6633470/v/dc/6adzy-31521/6adzy-116481) - Reviewer 2 |
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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
name: Require Checklist Helper | ||
on: | ||
pull_request: | ||
types: [opened, edited, synchronize, labeled, unlabeled] | ||
jobs: | ||
job1: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: preda-bogdan/gha-pr-check-helper@master | ||
with: | ||
requireChecklist: true | ||
onlyCheckBody: true | ||
completedLabel: "checklist completed" | ||
incompleteLabel: "checklist incomplete" | ||
skipLabel: "checklist-skip" | ||
allowStrikeThrough: false |