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.
1 parent 791201f commit 47bbaa5Copy full SHA for 47bbaa5
ci/check_changelog_entries.py
@@ -25,13 +25,13 @@ def is_int(s: str) -> bool:
25
print(f"Found {len(entries)} entries")
26
print()
27
28
- bad_suffix = [e for e in entries if e.suffix != ".rst"]
+ bad_suffix = [e for e in entries if e.suffix != ".md"]
29
bad_issue_no = [e for e in entries if not is_int(e.name.split(".")[0])]
30
bad_type = [e for e in entries if e.name.split(".")[1] not in VALID_CHANGELOG_TYPES]
31
32
if len(bad_suffix) or len(bad_issue_no) or len(bad_type):
33
if len(bad_suffix):
34
- print("Changelog entries without .rst suffix")
+ print("Changelog entries without .md suffix")
35
print("-------------------------------------")
36
print("\n".join([p.name for p in bad_suffix]))
37
0 commit comments