feat: add auto author assign for pr
- remove checklist in pr template
This commit is contained in:
8
.github/pull_request_template.md
vendored
8
.github/pull_request_template.md
vendored
@@ -13,14 +13,6 @@ Please provide a detailed description of what was done in this PR.
|
||||
|
||||
Please complete this section if any breaking changes have been made, otherwise delete it.
|
||||
|
||||
## Checklist
|
||||
|
||||
- [ ] I have assigned this PR to myself
|
||||
- [ ] I have added at least 1 reviewer
|
||||
- [ ] I have tested this code
|
||||
- [ ] I have added sufficient documentation in the code
|
||||
- [ ] I have added labels to this PR
|
||||
|
||||
## Additional comments
|
||||
|
||||
Please post additional comments in this section if you have them, otherwise delete it.
|
||||
14
.github/workflows/auto-author-assign.yml
vendored
Normal file
14
.github/workflows/auto-author-assign.yml
vendored
Normal file
@@ -0,0 +1,14 @@
|
||||
name: 'Auto Author Assign'
|
||||
|
||||
on:
|
||||
pull_request_target:
|
||||
types: [opened, reopened]
|
||||
|
||||
permissions:
|
||||
pull-requests: write
|
||||
|
||||
jobs:
|
||||
assign-author:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: toshimaru/auto-author-assign@v1.4.0
|
||||
Reference in New Issue
Block a user