Add workflow to auto-sync TODO.md task groups to GitHub Issues#14
Merged
Add workflow to auto-sync TODO.md task groups to GitHub Issues#14
Conversation
…m TODO.md Co-authored-by: devlux76 <86517969+devlux76@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Fix issue with spawning TODO list tasks
Add workflow to auto-sync TODO.md task groups to GitHub Issues
Mar 13, 2026
Contributor
There was a problem hiding this comment.
Pull request overview
Adds a GitHub Actions workflow to run the existing sync:github-project automation whenever TODO.md changes on main, ensuring TODO task groups stay reflected as GitHub milestones/labels/issues.
Changes:
- Introduces
.github/workflows/sync-github-project.ymlwithpush(TODO.md path filter) andworkflow_dispatchtriggers - Configures
GITHUB_TOKENpermissions and exposesGH_TOKENforghCLI authentication - Runs
npm ciand delegates tonpm run sync:github-project
Comment on lines
+11
to
+18
| permissions: | ||
| issues: write | ||
| contents: read | ||
|
|
||
| jobs: | ||
| sync: | ||
| runs-on: ubuntu-latest | ||
| steps: |
Owner
There was a problem hiding this comment.
@copilot excellent catch! Please fix it exercising your best judgement.
Contributor
Author
There was a problem hiding this comment.
Added in f49695a. Used cancel-in-progress: false so a queued run always executes rather than being dropped — safe because the script is idempotent and skips already-existing items regardless.
Co-authored-by: devlux76 <86517969+devlux76@users.noreply.github.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
scripts/sync-github-project.mjsexisted but no workflow triggered it whenTODO.mdchanged.github/workflows/sync-github-project.ymlthat triggers on push tomainwhenTODO.mdchanges and supportsworkflow_dispatchconcurrencygroup (cancel-in-progress: false) to serialize runs and prevent race-condition duplicates📱 Kick off Copilot coding agent tasks wherever you are with GitHub Mobile, available on iOS and Android.