You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
self.release_branch_name=f"release/{self.package_version}"# Branch from which we want to release
48
-
self.commit_message=f"Updated changelog and package version for Netcode in anticipation of v{self.package_version} release"
65
+
66
+
self.release_commit_message=f"Updated changelog and package version for Netcode in anticipation of v{self.package_version} release"
67
+
68
+
self.pr_branch_name=f"netcode-update-after-{self.package_version}-release-branch-creation"# Branch from which we will create PR to default branch with relevant changes after release branch is created
69
+
self.pr_commit_message=f"chore: Updated aspects of Netcode package in anticipation of v{self.package_version} release"
70
+
self.pr_body=f"This PR was created in sync with branching of {self.release_branch_name}. It includes changes that should land on the default Netcode branch ({self.default_repo_branch}) to reflect the new state of the package after the v{self.package_version} release:\n" \
71
+
f"1) Updated CHANGELOG.md by adding new [Unreleased] section template at the top and cleaning the Changelog for the current release.\n" \
72
+
f"2) Updated package version in package.json by incrementing the patch version to signify the current state of the package.\n" \
73
+
f"3) Updated package version in ValidationExceptions.json to match the new package version.\n\n" \
74
+
f"Please review and merge this PR to keep the default branch up to date with the latest package state after the release. Those changes can land immediately OR after the release was finalized but make sure that the Changelog will be merged correctly as sometimes some discrepancies may be introduced due to new entries being introduced meantime\n"
0 commit comments