From e6300f8aa0d0ffcdead755b9a37ee2d87b66cbdf Mon Sep 17 00:00:00 2001 From: Keith Solomon Date: Sat, 21 Jun 2025 11:56:10 -0500 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8feature:=20Add=20TODO=20sync=20action?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/todo-sync.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .github/workflows/todo-sync.yml diff --git a/.github/workflows/todo-sync.yml b/.github/workflows/todo-sync.yml new file mode 100644 index 0000000..f24b835 --- /dev/null +++ b/.github/workflows/todo-sync.yml @@ -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