From 9425734b4ff02794d3008518354a97f4adbf0e30 Mon Sep 17 00:00:00 2001 From: botantony Date: Tue, 27 May 2025 21:27:40 +0200 Subject: [PATCH] autobump_constants: add `:requires_manual_review` reason Signed-off-by: botantony --- Library/Homebrew/autobump_constants.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/Library/Homebrew/autobump_constants.rb b/Library/Homebrew/autobump_constants.rb index 0803803fe6..6dfab8de22 100644 --- a/Library/Homebrew/autobump_constants.rb +++ b/Library/Homebrew/autobump_constants.rb @@ -7,4 +7,5 @@ NO_AUTOBUMP_REASONS_LIST = T.let({ bumped_by_upstream: "bumped by upstream", extract_plist: "livecheck uses `:extract_plist` strategy", latest_version: "`version` is set to `:latest`", + requires_manual_review: "a manual review of this package is required for inclusion in autobump", }.freeze, T::Hash[Symbol, String])