Merge pull request #20299 from Homebrew/allow-deprecated-unsigned-autobump

tap: continue to autobump deprecated unsigned casks
This commit is contained in:
Mike McQuaid 2025-07-24 08:04:16 +00:00 committed by GitHub
commit c46a6b947d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -994,7 +994,8 @@ class Tap
end end
@autobump ||= autobump_packages.select do |_, p| @autobump ||= autobump_packages.select do |_, p|
next if p["deprecated"] || p["disabled"] next if p["disabled"]
next if p["deprecated"] && p["deprecation_reason"] != "unsigned"
next if p["skip_livecheck"] next if p["skip_livecheck"]
p["autobump"] == true p["autobump"] == true