From ac818dd616c0e42aa7ec33419cc583db93f28e69 Mon Sep 17 00:00:00 2001 From: Syuugo Date: Sun, 5 May 2024 11:54:39 +0900 Subject: [PATCH] =?UTF-8?q?PR=20Moderation=20=E3=82=92=E5=B0=8E=E5=85=A5?= =?UTF-8?q?=20(#114)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/pull_request_template.md | 8 +++----- .github/workflows/pr_moderation.yml | 18 ++++++++++++++++++ 2 files changed, 21 insertions(+), 5 deletions(-) create mode 100644 .github/workflows/pr_moderation.yml diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md index 4a61e43..24c08de 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 0000000..63d2794 --- /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