Skip to content

Commit c156c07

Browse files
committed
add todo checker action
I sometimes forget to resolve todo comments in my PRs, this might help.
1 parent 19da0db commit c156c07

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.github/workflows/todoChecker.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)