2025-04-24 15:04:49 +02:00
|
|
|
# typed: strict
|
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
# TODO: add more reasons here
|
|
|
|
NO_AUTOBUMP_REASONS_LIST = T.let({
|
|
|
|
incompatible_version_format: "incompatible version format",
|
2025-05-03 00:36:48 +02:00
|
|
|
bumped_by_upstream: "bumped by upstream",
|
2025-05-07 14:07:36 +02:00
|
|
|
extract_plist: "livecheck uses `:extract_plist` strategy",
|
2025-05-07 16:02:35 +02:00
|
|
|
latest_version: "`version` is set to `:latest`",
|
2025-05-27 21:27:40 +02:00
|
|
|
requires_manual_review: "a manual review of this package is required for inclusion in autobump",
|
2025-04-24 15:04:49 +02:00
|
|
|
}.freeze, T::Hash[Symbol, String])
|