mirror of
https://github.com/Homebrew/brew.git
synced 2025-07-14 16:09:03 +08:00
12 lines
505 B
Ruby
12 lines
505 B
Ruby
# typed: strict
|
|
# frozen_string_literal: true
|
|
|
|
# TODO: add more reasons here
|
|
NO_AUTOBUMP_REASONS_LIST = T.let({
|
|
incompatible_version_format: "incompatible version format",
|
|
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])
|