-
Notifications
You must be signed in to change notification settings - Fork 1.3k
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
🌱 update release-notes make target + corresponding doc #9573
🌱 update release-notes make target + corresponding doc #9573
Conversation
Makefile
Outdated
else \ | ||
go run ./hack/tools/release/notes.go --from=$(PREVIOUS_TAG) > $(RELEASE_NOTES_DIR)/$(RELEASE_TAG).md; \ | ||
fi | ||
release-notes: |
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.
We should probably update this target to be release-notes
tool, as it's confusing to have this target just build the tool rather than producing the notes themselves.
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.
@killianmuldoon the target is already named as you are suggesting, perhaps you meant something else?
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.
I think he meant something like
build-release-notes-tool
or release-notes-tool
.
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.
pushed up some changes that i think resolve this -- lmk if i misunderstood the recommendation
/retitle 🌱 update release-notes make target + corresponding doc |
01c06cd
to
309c7a7
Compare
2bb50f1
to
de1b74c
Compare
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 to me, thanks @cahillsf!
/lgtm
LGTM label has been added. Git tree hash: 44c8e3ef27c9e7998cc2c043ccfa7305343f1e2a
|
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.
Thanks!
/lgtm
/approve
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: killianmuldoon The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
What this PR does / why we need it:
Updates the make target (which is not in use anymore) and the corresponding documentation for generating the release PR. The notes tool is frequently iterated on and to avoid excess overhead of backporting all the changes to
release-*
branches the updated process is to always build the binary from main, then checkout the relevant branches.Which issue(s) this PR fixes (optional, in
fixes #<issue number>(, fixes #<issue_number>, ...)
format, will close the issue(s) when PR gets merged):Fixes #9556
/area release