mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-07-22 08:30:57 +00:00
chromium: match release blog entry titles case-insensitive in get-commit-message.py
(cherry picked from commit 96ea156926)
This commit is contained in:
committed by
github-actions[bot]
parent
2f9feac1f9
commit
11eb7b5916
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user