-
Notifications
You must be signed in to change notification settings - Fork 6
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
README improvements + typo fix #249
Conversation
qmonnet
commented
Jul 30, 2024
•
edited
Loading
edited
- Add logo to repository
- README.md: Expand doc, tell how to generate release notes
- changelog: Fix typo (duplicate 'of') in command help
- README.md: Remove outdated instruction for GITHUB_TOKEN
Signed-off-by: Quentin Monnet <[email protected]>
The release utility can also be used to generate the checklists for the release. Let's expand the doc to mention the "release help" command, and introduce the "release checklist" feature. Note that the example for creating a new patch release issue relies on the legacy template, not the new one (I expect the new one to be renamed and replace the old one, eventually?). Signed-off-by: Quentin Monnet <[email protected]>
Signed-off-by: Quentin Monnet <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good thanks. Additionally we can trim one section around GITHUB_TOKEN
.
README.md
Outdated
Use the `release` utility to update GitHub projects and create release notes | ||
for a new Cilium release: | ||
|
||
```bash | ||
$ export GITHUB_TOKEN=<token_with_repo_public_access> | ||
``` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
side-note, after #229 we no longer need to export this token.
Following commit b482702 ("pkg/github: Auto-populate GITHUB_TOKEN"), the tool no longer requires the GitHub token to be set explicitly by the user. Instead, it is able to rely on the GitHub command line to automatically fetch and use the relevant token. Let's remove the token-definition step from the instructions. Suggested-by: Joe Stringer <[email protected]> Signed-off-by: Quentin Monnet <[email protected]>
Good catch, I added a commit to remove this instruction. Thank you! |