Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2023-02-16 03:09:15 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2023-02-16 03:09:15 +0300
commite97635ea6c5bdb695188b3ad75edd5f5842387b4 (patch)
tree245f0bc7493683e3b061db3f7482505dd6c2fdf2 /tooling
parent6505e8ec12b203dc380186e7eb6916397caca1f4 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'tooling')
-rw-r--r--tooling/danger/stable_branch.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/tooling/danger/stable_branch.rb b/tooling/danger/stable_branch.rb
index 76e19cfc754..8fac1cc5fbf 100644
--- a/tooling/danger/stable_branch.rb
+++ b/tooling/danger/stable_branch.rb
@@ -33,8 +33,8 @@ module Tooling
This branch is meant for backporting bug fixes. If this MR qualifies please add the `type::bug` label. #{MAINTENANCE_POLICY_MESSAGE}
MSG
- VERSION_ERROR_MESSAGE = <<~MSG
- Patches are generally only accepted on the most recent 3 minor versions of GitLab. #{MAINTENANCE_POLICY_MESSAGE}
+ VERSION_WARNING_MESSAGE = <<~MSG
+ Backporting to older releases requires an [exception request process](https://docs.gitlab.com/ee/policy/maintenance.html#backporting-to-older-releases)
MSG
FAILED_VERSION_REQUEST_MESSAGE = <<~MSG
@@ -62,7 +62,7 @@ module Tooling
fail FEATURE_ERROR_MESSAGE if has_feature_label?
fail BUG_ERROR_MESSAGE unless has_bug_label?
- warn VERSION_ERROR_MESSAGE unless targeting_patchable_version?
+ warn VERSION_WARNING_MESSAGE unless targeting_patchable_version?
return if has_flaky_failure_label? || has_only_documentation_changes?