Remove due date syncing from sync pipeline#19
Merged
jack-champagne merged 3 commits intomainfrom Feb 8, 2026
Merged
Conversation
Co-authored-by: jack-champagne <43344745+jack-champagne@users.noreply.github.com>
Due dates should be managed entirely in the GitHub Projects interface, not synced from TASKS.md. This removes due date support from the sync pipeline: - Remove explicit due_date=None from ProjectItem construction in sync.py - Remove "End date" field from test stub _stub_fields() in test_execute_sync.py - Remove "- **Due:**" lines from examples/TASKS.md - Add .venv/ to .gitignore Keep the due_date field on ProjectItem (read-only, for display). Several items from the TASKS.md checklist (RE_DUE pattern, due_date on Task, due_date comparison in _needs_update, due date write in _apply_task_fields, Due references in FORMAT.md/README.md) were already absent from the codebase. Co-authored-by: jack-champagne <43344745+jack-champagne@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Remove due date syncing from project management
Remove due date syncing from sync pipeline
Feb 8, 2026
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.
Due dates should be managed entirely in the GitHub Projects UI, not synced from TASKS.md.
Changes
sync.py— Remove explicitdue_date=Nonefrom twoProjectItem()constructions (redundant with default)tests/test_execute_sync.py— Remove"End date"field from_stub_fields()test helperexamples/TASKS.md— Remove- **Due:** ...metadata lines.gitignore— Add.venv/Kept
ProjectItem.due_dateremains as a read-only field (per task spec) — the board still reads it for display, we just no longer write or diff on it.Already absent
Several items in the task checklist (
RE_DUEin parser,due_dateonTask, due date comparison in_needs_update, due date write in_apply_task_fields, Due references in FORMAT.md/README.md) were already removed or never existed.💡 You can make Copilot smarter by setting up custom instructions, customizing its development environment and configuring Model Context Protocol (MCP) servers. Learn more Copilot coding agent tips in the docs.