Skip to content

Commit 87af872

Browse files
committed
fix: add implementation-plan export to pre-commit hooks
1 parent f646b1c commit 87af872

1 file changed

Lines changed: 10 additions & 1 deletion

File tree

.pre-commit-config.yaml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,18 @@ repos:
1515
stages: [commit]
1616
verbose: true
1717

18+
- id: export-implementation-plan
19+
name: Export Implementation Plan from bd
20+
entry: ./scripts/export-implementation-plan.sh
21+
language: system
22+
pass_filenames: false
23+
always_run: true
24+
stages: [commit]
25+
verbose: true
26+
1827
- id: auto-add-exports
1928
name: Auto-add exported documentation files
20-
entry: bash -c 'git add CURRENT_SPRINT.md 2>/dev/null || true'
29+
entry: bash -c 'git add CURRENT_SPRINT.md IMPLEMENTATION_PLAN.md 2>/dev/null || true'
2130
language: system
2231
pass_filenames: false
2332
always_run: true

0 commit comments

Comments
 (0)