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 2673a37 commit 69ac6e9Copy full SHA for 69ac6e9
scripts/find_breaking_changes.py
@@ -58,7 +58,7 @@ def get_releases_with_breaking_changes(repo, current_version, new_version):
58
59
# Check if release notes have breaking changes header or bold text
60
body = release.get("body", "")
61
- if re.search(r"^(#+|\*\*)\s*breaking changes", body, re.MULTILINE | re.IGNORECASE):
+ if re.search(r"^\s*(#+|\*\*).*breaking changes", body, re.MULTILINE | re.IGNORECASE):
62
breaking_releases.append(
63
{
64
"version": release_version,
0 commit comments