|
12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- # Deploy / QA note template
-
- Copy this for each deploy (or ask the agent: “寫 deploy test plan for commits X..Y”).
-
- ```markdown
- # Deploy note — <short title>
- Date: YYYY-MM-DD
- Branch / build: <branch or tag>
- Author: <name>
-
- ## Summary
- -
-
- ## Scope
- - Backend:
- - Frontend:
- - DB / Liquibase: none
- - Config / ops: none
-
- ## Commits
- - `________` —
-
- ## Test plan
- | # | Steps | Expected result |
- |---|--------|-----------------|
- | 1 | | |
- | 2 | | |
-
- ## Out of scope / not tested
- -
-
- ## Rollback
- -
- ```
-
- Filled examples live in `docs/deploy/` after each release prep.
-
- ### Auto-generate Word plans (one file per commit)
-
- Full team instructions: [`HOW_TO_GENERATE_COMMIT_TEST_PLANS.md`](HOW_TO_GENERATE_COMMIT_TEST_PLANS.md)
-
- ```bash
- pip install python-docx
- python scripts/generate_commit_test_plans_docx.py HEAD~10..HEAD
- # → docs/deploy/commit-plans/<date>_<sha>_<slug>.docx
- ```
|