Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

PR template: Remove release note #12079

Merged
merged 1 commit into from
Nov 6, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 0 additions & 9 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,3 @@
- Mention any manual testing done.
- If there are UI updates, please include before & after screenshots
-->

## Release Note
<!--
Include a release note if there is a bug fix or a visible change for players.
For format & syntax help, see:
https://github.com/triplea-game/triplea/blob/master/docs/development/reference/pr-release-notes.md
-->

<!--RELEASE_NOTE--><!--END_RELEASE_NOTE-->
21 changes: 1 addition & 20 deletions docs/admin/release-steps.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,26 +24,7 @@ Incrementing version number will cause a new lobby to be deployed.

## Finalize Release Notes

## Release Note Script

Run this script to parse release notes from merged PRs (this script could use some work! YMMV)

```
#!/bin/bash

for page in $(seq 1 4); do
curl "https://api.github.com/repos/triplea-game/triplea/pulls?state=closed&page=$page" \
| grep -Eo "merged_at\":|number\":.*|RELEASE_NOTE.*END_RELEASE_NOTE" \
| grep -B3 "merged_at\":" \
| grep -B1 RELEASE_NOTE \
| sed 's@^number": \([0-9]*\),$@|[#\1](https://github.com/triplea-game/triplea/pull/\1)|@' \
| sed 's/RELEASE_NOTE-->//' \
| sed 's/<!--END_RELEASE_NOTE$/|/' \
| paste -d '' - -
done >> release-notes
```

Clean up the above output and update the release-notes.md page on website.
Update the release-notes.md page on website.

## Update servers.yml

Expand Down
34 changes: 0 additions & 34 deletions docs/development/pr-release-notes.md

This file was deleted.