feature: Add TODO sync action

This commit is contained in:
Keith Solomon
2025-06-21 11:56:10 -05:00
parent 57deee8ff6
commit e6300f8aa0

26
.github/workflows/todo-sync.yml vendored Normal file
View File

@@ -0,0 +1,26 @@
name: Sync TODOs with Issues
on:
workflow_dispatch:
push:
paths-ignore:
- '**.md'
jobs:
sync_todos:
runs-on: ubuntu-latest
permissions:
contents: write
issues: write
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Sync TODOs
uses: Solo-Web-Works/TODO-Sync@v2
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
summary_file: TODO_SUMMARY.md
dry_run: false
commit: false