Skip to content

Commit e803050

Browse files
fix(board): track empty todo/ with .gitkeep like doing/ and done/
Co-authored-by: Cursor <cursoragent@cursor.com>
1 parent e944d33 commit e803050

4 files changed

Lines changed: 3 additions & 1 deletion

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,7 @@ jobs:
7676
"handoff/BOOTSTRAP.md",
7777
"handoff/STATE.md",
7878
"handoff/board/README.md",
79+
"handoff/board/todo/.gitkeep",
7980
"handoff/board/doing/.gitkeep",
8081
"handoff/board/done/.gitkeep",
8182
"docs/CURSOR_PROMPTS.md",

handoff/board/todo/.gitkeep

Whitespace-only changes.

scripts/graphstack/installer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@
7878
"constants.py",
7979
)
8080

81-
GITKEEP_DIRS = ("handoff/board/doing", "handoff/board/done")
81+
GITKEEP_DIRS = ("handoff/board/todo", "handoff/board/doing", "handoff/board/done")
8282

8383
STATE_TEMPLATE = """# GraphStack Session State
8484

scripts/graphstack/tests/test_installer.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ def test_install_creates_full_layout(tmp_path: Path, monkeypatch: pytest.MonkeyP
5151
"scripts/graphstack/cli.py",
5252
"scripts/graphstack/validate.py",
5353
"scripts/graphstack/__main__.py",
54+
"handoff/board/todo/.gitkeep",
5455
"handoff/board/doing/.gitkeep",
5556
"handoff/board/done/.gitkeep",
5657
)

0 commit comments

Comments
 (0)