There was an error while loading. Please reload this page.
1 parent 4efeb81 commit d8a911fCopy full SHA for d8a911f
1 file changed
.github/workflows/todo.yml
@@ -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