diff --git a/release_automation/templates/pr_bodies/release_review_pr.mustache b/release_automation/templates/pr_bodies/release_review_pr.mustache index 029f9786..8e2fcde3 100644 --- a/release_automation/templates/pr_bodies/release_review_pr.mustache +++ b/release_automation/templates/pr_bodies/release_review_pr.mustache @@ -52,6 +52,7 @@ _The following actions and checks are done by a Release Management reviewer befo - [ ] Breaking changes are documented and version updates follow SemVer rules - [ ] Mandatory release assets are present for each API according to its status - [ ] All remaining validation warnings are documented in issues and the reasons for deferral are defensible +- [ ] Content findings needing a `main` PR are collected as sub-issues of one issue titled `Release {{release_tag}} review findings` (see [Recording review findings](https://github.com/camaraproject/ReleaseManagement/blob/main/documentation/readiness/api-readiness-checklist.md#recording-review-findings))
Required release assets per API status diff --git a/release_automation/tests/test_template_loader.py b/release_automation/tests/test_template_loader.py index f3b322cc..b9181d68 100644 --- a/release_automation/tests/test_template_loader.py +++ b/release_automation/tests/test_template_loader.py @@ -47,6 +47,7 @@ def test_render_release_review_pr_template(self): assert "Commonalities r3.4" in result assert "Mandatory release assets are present for each API according to its status" in result assert "All remaining validation warnings are documented in issues and the reasons for deferral are defensible" in result + assert "Content findings needing a `main` PR are collected as sub-issues of one issue titled `Release r4.1 review findings`" in result assert "Assign the Release Management reviewer(s) as assignee(s) of this PR" in result assert "The following actions and checks are done by a Release Management reviewer before approving the PR" in result assert "### Valid next actions for codeowners" in result