Skip to content

Commit 0744b36

Browse files
committed
Remove Changelog: XXX title from Github release notes
1 parent 9b33872 commit 0744b36

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

src/tools/rust-analyzer/xtask/src/publish.rs

+9
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,15 @@ impl flags::PublishReleaseNotes {
99
pub(crate) fn run(self, sh: &Shell) -> anyhow::Result<()> {
1010
let asciidoc = sh.read_file(&self.changelog)?;
1111
let mut markdown = notes::convert_asciidoc_to_markdown(std::io::Cursor::new(&asciidoc))?;
12+
if !markdown.starts_with("# Changelog") {
13+
bail!("changelog Markdown should start with `# Changelog`");
14+
}
15+
const NEWLINES: &str = "\n\n";
16+
let Some(idx) = markdown.find(NEWLINES) else {
17+
bail!("missing newlines after changelog title");
18+
};
19+
markdown.replace_range(0..idx + NEWLINES.len(), "");
20+
1221
let file_name = check_file_name(self.changelog)?;
1322
let tag_name = &file_name[0..10];
1423
let original_changelog_url = create_original_changelog_url(&file_name);

0 commit comments

Comments
 (0)