You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

TEMPLATE.md 880 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. # Deploy / QA note template
  2. Copy this for each deploy (or ask the agent: “寫 deploy test plan for commits X..Y”).
  3. ```markdown
  4. # Deploy note — <short title>
  5. Date: YYYY-MM-DD
  6. Branch / build: <branch or tag>
  7. Author: <name>
  8. ## Summary
  9. -
  10. ## Scope
  11. - Backend:
  12. - Frontend:
  13. - DB / Liquibase: none
  14. - Config / ops: none
  15. ## Commits
  16. - `________` —
  17. ## Test plan
  18. | # | Steps | Expected result |
  19. |---|--------|-----------------|
  20. | 1 | | |
  21. | 2 | | |
  22. ## Out of scope / not tested
  23. -
  24. ## Rollback
  25. -
  26. ```
  27. Filled examples live in `docs/deploy/` after each release prep.
  28. ### Auto-generate Word plans (one file per commit)
  29. Full team instructions: [`HOW_TO_GENERATE_COMMIT_TEST_PLANS.md`](HOW_TO_GENERATE_COMMIT_TEST_PLANS.md)
  30. ```bash
  31. pip install python-docx
  32. python scripts/generate_commit_test_plans_docx.py HEAD~10..HEAD
  33. # → docs/deploy/commit-plans/<date>_<sha>_<slug>.docx
  34. ```