-
Notifications
You must be signed in to change notification settings - Fork 60
36 lines (35 loc) · 1.55 KB
/
PostCheckList.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
name: Post check list
on:
pull_request:
branches:
- master
types: [opened, reopened]
jobs:
post_check_list:
name: Post check list
timeout-minutes: 10
runs-on: ubuntu-22.04
permissions:
actions: write
checks: write
contents: write
deployments: write
issues: write
packages: write
pull-requests: write
repository-projects: write
security-events: write
statuses: write
steps:
- uses: alawiii521/[email protected]
with:
comment: |
# Checklist for reviewers ☑️
All references to "You" in the following text refer to the code reviewer.
- [ ] Is this pull request written in a way that is easy to read from a third-party perspective?
- [ ] Is there sufficient information (background, purpose, specification, algorithm description, list of disruptive changes, and migration guide) in the description of this pull request?
- [ ] If this pull request contains a destructive change, does this pull request contain the migration guide?
- [ ] Labels of this pull request are valid?
- [ ] All unit tests/integration tests are included in this pull request? If you think adding test cases is unnecessary, please describe why and cross out this line.
- [ ] The documentation for this pull request is enough? If you think adding documents for this pull request is unnecessary, please describe why and cross out this line.
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}