diff --git a/.github/workflows/checklist.yml b/.github/workflows/checklist.yml new file mode 100644 index 0000000000..dfcfca852f --- /dev/null +++ b/.github/workflows/checklist.yml @@ -0,0 +1,22 @@ +name: PR Checklist + +on: + pull_request_target: + types: + - opened + - synchronize + branches: + - master + +jobs: + checklist_job: + runs-on: ubuntu-latest + name: Checklist job + steps: + - name: Checkout + uses: actions/checkout@v1 + - name: Checklist + uses: wyozi/contextual-qa-checklist-action@master + with: + gh-token: ${{ secrets.GITHUB_TOKEN }} + comment-footer: Make sure to check off this list before asking for review. diff --git a/.github/workflows/ci-pull-requests.yml b/.github/workflows/ci-pull-requests.yml index 99ce69d02e..714e6b4938 100644 --- a/.github/workflows/ci-pull-requests.yml +++ b/.github/workflows/ci-pull-requests.yml @@ -107,15 +107,3 @@ jobs: env: ESLINT_PLUGIN_DIFF_COMMIT: ${{ github.event.pull_request.base.ref }} run: pnpm lint - - checklist_job: - runs-on: ubuntu-latest - name: Checklist job - steps: - - name: Checkout - uses: actions/checkout@v1 - - name: Checklist - uses: wyozi/contextual-qa-checklist-action@master - with: - gh-token: ${{ secrets.GITHUB_TOKEN }} - comment-footer: Make sure to check off this list before asking for review.