Skip to content

Commit

Permalink
chore: add workflow that doesnt succeed until PR tasks completed
Browse files Browse the repository at this point in the history
  • Loading branch information
jenniferarnesen committed Feb 17, 2025
1 parent d7c8d08 commit b319de2
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,11 @@ _text_

### TODO

- [ ] Cypress tests
- [ ] Update docs
- [ ] Manual testing
- [ ] _task_
- [ ] Dashboard tested
- [ ] Tests added (Cypress and/or Jest)
- [ ] Docs added
- [ ] Update dependencies to not point to d2-ci
- [ ] _todo_

---

Expand Down
14 changes: 14 additions & 0 deletions .github/workflows/check-tasklist.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: GitHub Task List Checker
on:
pull_request:
types: [opened, edited, synchronize, reopened]

jobs:
task-list-checker:
if: ${{ github.actor != 'dependabot[bot]' }}
runs-on: ubuntu-latest
steps:
- name: Check for incomplete task list items
uses: Shopify/task-list-checker@main
with:
github-token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit b319de2

Please sign in to comment.