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
*[ ] copy the exact commit hash for bumping the version from the pull-request (since master always stays as "-dev")
70
+
*[ ] count the PRs since last release (that this version is tracking, in the cases of multiple branching), like `git log --pretty=oneline --no-merges --decorate $priorTag..$versionBumpCommit | grep \(pr\/ | wc -l`
71
+
*[ ] get the date for a week from now, like `TZ=UTC date --date='next week'`
72
+
*[ ] OPTIONAL find a cute animal gif to attach to the email, and subsequently the release description
73
+
*[ ] subject line like `[runtime-spec VOTE] tag $versionBumpCommit as $version (closes $dateWeekFromNowUTC)`
74
+
*[ ] email body like
75
+
```
76
+
Hey everyone,
77
+
78
+
There have been $numPRs PRs merged since $priorTag release (https://github.com/opencontainers/runtime-spec/compare/$priorTag...$versionBumpCommit).
79
+
80
+
$linkToPullRequest
81
+
82
+
Please respond LGTM or REJECT (with reasoning).
83
+
84
+
$sig
85
+
```
86
+
*[ ] edit/update the pull-request to link to the VOTE thread, from https://groups.google.com/a/opencontainers.org/forum/#!forum/dev
87
+
*[ ] a week later, if the vote passes, merge the PR
88
+
*[ ]`git tag -s $version $versionBumpCommit`
89
+
*[ ]`git push --tags`
90
+
*[ ] produce release documents
91
+
*[ ] git checkout the release tag, like `git checkout $version`
92
+
*[ ]`make docs`
93
+
*[ ] rename the output PDF and HTML file to include version, like `mv output/oci-runtime-spec.pdf output/oci-runtime-spec-$version.pdf``
94
+
*[ ] attach these docs to the release on https://github.com/opencontainers/runtime-spec/releases
95
+
*[ ] link to the the VOTE thread and include the passing vote count
96
+
*[ ] link to the pull request that merged the release
0 commit comments