File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -392,6 +392,33 @@ Write the report to `generated/DOGFOOD_REPORT_v$ARGUMENTS.md` with this structur
392392
393393---
394394
395+ ## Phase 10 — Commit the Report
396+
397+ The dogfood report **must** be committed to the repository — do not leave it as an untracked file.
398+
399+ 1. **If bug-fix PRs were created during Phase 7:** Add the report to the **first** PR's branch:
400+ ```bash
401+ git checkout <first-pr-branch>
402+ git add generated/DOGFOOD_REPORT_v$ARGUMENTS.md
403+ git commit -m "docs: add dogfood report for v$ARGUMENTS"
404+ git push
405+ ```
406+
407+ 2. **If no PRs were created** (zero bugs / green path): Create a dedicated PR for the report:
408+ ```bash
409+ git checkout -b docs/dogfood-report-v$ARGUMENTS main
410+ git add generated/DOGFOOD_REPORT_v$ARGUMENTS.md
411+ git commit -m "docs: add dogfood report for v$ARGUMENTS"
412+ git push -u origin docs/dogfood-report-v$ARGUMENTS
413+ gh pr create --base main \
414+ --title "docs: add dogfood report for v$ARGUMENTS" \
415+ --body "Dogfooding report for v$ARGUMENTS. See generated/DOGFOOD_REPORT_v$ARGUMENTS.md for full details."
416+ ```
417+
418+ 3. **Verify** the report file appears in the PR diff before moving on.
419+
420+ ---
421+
395422## Rules
396423
397424- Be thorough but honest. Don't inflate the rating.
You can’t perform that action at this time.
0 commit comments