We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents eb0894e + a13649a commit b6ea52fCopy full SHA for b6ea52f
1 file changed
scripts/gen-release-notes.py
@@ -20,6 +20,11 @@
20
first_heading_found = False
21
for line in md_text.splitlines():
22
if line.startswith("# "):
23
+ # Skip the first section (normally # Releases).
24
+ pass
25
+ elif line.startswith("## "):
26
+ # First second-level section, note it and skip the text,
27
+ # as we are only interested in the individual release items.
28
if first_heading_found:
29
break
30
first_heading_found = True
0 commit comments