Skip to content

Commit

Permalink
add pr checklist
Browse files Browse the repository at this point in the history
  • Loading branch information
zk-steve committed Dec 1, 2023
1 parent 8709fca commit 5fab03f
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/review-checklist.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
- [ ] Did you check your grammar / reader proof your document using ChatGPT?
- [ ] Don't forget to squash commits into meaningful chunks before merging
- [ ] After merging this, please update your task status!
24 changes: 24 additions & 0 deletions .github/workflows/auto_create_pr_checklist.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Add review checklist

on:
pull_request_target:
types: [opened]

permissions:
pull-requests: write

jobs:
add-review-checklist:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v3
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Add review checklist
uses: trixi-framework/add-pr-review-checklist@v1
with:
file: '.github/review-checklist.md'
no-checklist-keyword: '[no checklist]'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Empty file added .gitignore
Empty file.

0 comments on commit 5fab03f

Please sign in to comment.