From e8d64ae4d20096aa2d39c509b14f23cbe2ce55c8 Mon Sep 17 00:00:00 2001 From: Ruben Hoenle Date: Fri, 28 Mar 2025 12:27:31 +0100 Subject: [PATCH] chore(ci): add pr task list check workflow relates to STACKITTPR-138 --- .github/workflows/pr-task-list.yaml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/workflows/pr-task-list.yaml 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 }}