diff --git a/.github/workflows/task-list-checker.yml b/.github/workflows/task-list-checker.yml new file mode 100644 index 000000000000..8511a0e5c0e4 --- /dev/null +++ b/.github/workflows/task-list-checker.yml @@ -0,0 +1,12 @@ +name: GitHub Task List Checker +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 }}