chromium: match release blog entry titles case-insensitive in get-commit-message.py

(cherry picked from commit 96ea156926)
This commit is contained in:
networkException
2024-09-03 19:55:57 +02:00
committed by github-actions[bot]
parent 2f9feac1f9
commit 11eb7b5916

View File

@@ -20,7 +20,7 @@ target_version = sys.argv[1] if len(sys.argv) == 2 else None
for entry in feed.entries:
url = requests.get(entry.link).url.split('?')[0]
if entry.title != 'Stable Channel Update for Desktop':
if entry.title.lower() != 'Stable Channel Update for Desktop'.lower():
if target_version and entry.title == '':
# Workaround for a special case (Chrome Releases bug?):
if not 'the-stable-channel-has-been-updated-to' in url: