diff --git a/.github/workflows/pr-task-list.yaml b/.github/workflows/pr-task-list.yaml new file mode 100644 index 000000000..0e1e8e441 --- /dev/null +++ b/.github/workflows/pr-task-list.yaml @@ -0,0 +1,14 @@ +name: "PR task list check" + +on: + pull_request: + types: [opened, edited, synchronize, reopened] + +jobs: + task-list-checker: + runs-on: ubuntu-latest + steps: + - name: Check for incomplete task list items + uses: Shopify/task-list-checker@main + with: + github-token: ${{ secrets.GITHUB_TOKEN }}