diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md index 4a61e433..24c08de2 100644 --- a/.github/pull_request_template.md +++ b/.github/pull_request_template.md @@ -3,16 +3,14 @@ -- [ ] 動作確認済み -- [ ] 誤字脱字無し +- [ ] 動作確認済み +- [ ] 誤字脱字無し --- ### 説明 diff --git a/.github/workflows/pr_moderation.yml b/.github/workflows/pr_moderation.yml new file mode 100644 index 00000000..63d2794e --- /dev/null +++ b/.github/workflows/pr_moderation.yml @@ -0,0 +1,18 @@ +name: PR Moderation + +on: + pull_request: + types: + - opened + - edited + - reopened + +jobs: + verify: + name: Verify + runs-on: ubuntu-latest + permissions: + pull-requests: write + steps: + - name: Check tasklist + uses: Awayume/github-pr-tasklist-checker@v1