Skip to content

Merge pull request #157 from Create-Python-App/feat/issue-155-156-hom… #32

Merge pull request #157 from Create-Python-App/feat/issue-155-156-hom…

Merge pull request #157 from Create-Python-App/feat/issue-155-156-hom… #32

Workflow file for this run

name: Todo Checker
on:
push:
branches: [main]
schedule:
- cron: "31 1,12 * * *"
workflow_dispatch:
permissions:
contents: read
issues: write
jobs:
todo:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Scan TODOs
run: |
if grep -RIn --exclude-dir=.git --exclude-dir=.venv "TODO\|FIXME" . | head -50; then
echo "Found TODO/FIXME markers (informational)"
else
echo "No TODO/FIXME markers"
fi