-
Notifications
You must be signed in to change notification settings - Fork 3.5k
[chore] support markdown and asciidoc release notes #17621
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
Conversation
This commit preserves asciidoc release note generator to `generate_release_notes.rb` for v7 backward compatibility. Markdown generator moves to `generate_release_notes_md.rb`. The workflow default value is updated. Fixes: #16853
This pull request does not have a backport label. Could you fix it @kaisecheng? 🙏
|
|
💚 Build Succeeded
History
|
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.
LGTM
@Mergifyio backport 9.0 |
✅ Backports have been created
|
This commit preserves asciidoc release note generator to `generate_release_notes.rb` for v7 backward compatibility. Markdown generator moves to `generate_release_notes_md.rb`. The workflow default value is updated. Fixes: #16853 Follow-up of #17613 (cherry picked from commit 814c6cd) # Conflicts: # .github/workflows/gen_release_notes.yml # tools/release/generate_release_notes.rb # tools/release/generate_release_notes_md.rb
… notes (#17622) This commit preserves asciidoc release note generator to `generate_release_notes.rb` for v7 backward compatibility. Markdown generator moves to `generate_release_notes_md.rb`. The workflow default value is updated. Fixes: #16853 Follow-up of #17613 (cherry picked from commit 814c6cd) --------- Co-authored-by: kaisecheng <[email protected]>
This commit preserves asciidoc release note generator to
generate_release_notes.rb
for v7 backward compatibility.Markdown generator moves to
generate_release_notes_md.rb
.Prior to this change, in case v7 needs a release, the workflow runs
generate_release_notes_asciidoc.rb
inmain
and the script checkouts7.17
branch. However, v7 does not have the newgenerate_release_notes_asciidoc.rb
. So, it is better to keep the asciidoc generation togenerate_release_notes.rb
Follow-up of #17613
Fixes: #16853