Skip to content

Commit 2f8e408

Browse files
committed
chore: add workflow to check for added todos in a pr
1 parent 3eede88 commit 2f8e408

1 file changed

Lines changed: 20 additions & 0 deletions

File tree

.github/workflows/check-todo.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: PR Todo Checker
2+
3+
on:
4+
pull_request_review_comment:
5+
types: [edited, deleted]
6+
pull_request:
7+
types: [opened, synchronize, reopened]
8+
9+
jobs:
10+
find_todos:
11+
runs-on: ubuntu-latest
12+
13+
steps:
14+
- name: Checkout code
15+
uses: actions/checkout@v4
16+
17+
- name: Check for Todos
18+
uses: phntmxyz/pr_todo_checker@v1
19+
with:
20+
token: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)