Skip to content

Commit d8a911f

Browse files
ci: TODO checker workflow
Closes #49 Co-authored-by: Cursor <cursoragent@cursor.com>
1 parent 4efeb81 commit d8a911f

1 file changed

Lines changed: 22 additions & 0 deletions

File tree

.github/workflows/todo.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: Todo Checker
2+
on:
3+
push:
4+
branches: [main]
5+
schedule:
6+
- cron: "31 1,12 * * *"
7+
workflow_dispatch:
8+
permissions:
9+
contents: read
10+
issues: write
11+
jobs:
12+
todo:
13+
runs-on: ubuntu-latest
14+
steps:
15+
- uses: actions/checkout@v4
16+
- name: Scan TODOs
17+
run: |
18+
if grep -RIn --exclude-dir=.git --exclude-dir=.venv "TODO\|FIXME" . | head -50; then
19+
echo "Found TODO/FIXME markers (informational)"
20+
else
21+
echo "No TODO/FIXME markers"
22+
fi

0 commit comments

Comments
 (0)