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
path: root/danger
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2023-01-06 21:08:53 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2023-01-06 21:08:53 +0300
commit9213b5a0fd66f3b466047bf85f90ad056c239f18 (patch)
tree13215032e8f994c862676fdb66a6ceb9b3b59851 /danger
parenta9524ab189e8340e0b6ea64a1355b9484d1d9731 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'danger')
-rw-r--r--danger/ci_templates/Dangerfile15
-rw-r--r--danger/gitaly/Dangerfile4
-rw-r--r--danger/pipeline/Dangerfile6
3 files changed, 14 insertions, 11 deletions
diff --git a/danger/ci_templates/Dangerfile b/danger/ci_templates/Dangerfile
index ace9905e91d..bc8bba388c6 100644
--- a/danger/ci_templates/Dangerfile
+++ b/danger/ci_templates/Dangerfile
@@ -1,6 +1,6 @@
# frozen_string_literal: true
-TEMPLATE_MESSAGE = <<~MSG
+CI_CD_TEMPLATE_MESSAGE = <<~MSG
This merge request requires a CI/CD Template review. To make sure these
changes are reviewed, take the following steps:
@@ -11,7 +11,7 @@ changes are reviewed, take the following steps:
1. Assign and `@` mention the CI/CD Template reviewer suggested by Reviewer Roulette.
MSG
-TEMPLATE_FILES_MESSAGE = <<~MSG
+CI_CD_TEMPLATE_FILES_MESSAGE = <<~MSG
The following files require a review from the CI/CD Templates maintainers:
MSG
@@ -20,9 +20,12 @@ return unless helper.ci?
template_paths_to_review = helper.changes_by_category[:ci_template]
if helper.mr_labels.include?('ci::templates') || template_paths_to_review.any?
- message 'This merge request adds or changes files that require a ' \
- 'review from the CI/CD Templates maintainers.'
+ message('This merge request adds or changes files that require a ' \
+ 'review from the CI/CD Templates maintainers.')
- markdown(TEMPLATE_MESSAGE)
- markdown(TEMPLATE_FILES_MESSAGE + helper.markdown_list(template_paths_to_review)) if template_paths_to_review.any?
+ markdown(CI_CD_TEMPLATE_MESSAGE)
+
+ if template_paths_to_review.any?
+ markdown(CI_CD_TEMPLATE_FILES_MESSAGE + helper.markdown_list(template_paths_to_review))
+ end
end
diff --git a/danger/gitaly/Dangerfile b/danger/gitaly/Dangerfile
index 59e55845c83..d7ff8d6446a 100644
--- a/danger/gitaly/Dangerfile
+++ b/danger/gitaly/Dangerfile
@@ -1,6 +1,6 @@
# frozen_string_literal: true
-TEMPLATE_MESSAGE = <<~MSG
+GITALY_COORDINATION_MESSAGE = <<~MSG
This merge request requires coordination with gitaly deployments.
Before merging this merge request we should verify that gitaly
running in production already implements the new gRPC interface
@@ -18,5 +18,5 @@ changed_lines = helper.changed_lines('Gemfile.lock')
if changed_lines.any? { |line| line =~ /^\+\s+gitaly \(/ }
warn 'Changing gitaly gem can cause a multi-version incompatibility incident'
- markdown(TEMPLATE_MESSAGE)
+ markdown(GITALY_COORDINATION_MESSAGE)
end
diff --git a/danger/pipeline/Dangerfile b/danger/pipeline/Dangerfile
index 2fffd94be2e..c61fca86beb 100644
--- a/danger/pipeline/Dangerfile
+++ b/danger/pipeline/Dangerfile
@@ -1,6 +1,6 @@
# frozen_string_literal: true
-MESSAGE = <<~MESSAGE
+PIPELINE_CHANGES_MESSAGE = <<~MSG
## Pipeline Changes
This merge request contains changes to the pipeline configuration for the GitLab project.
@@ -15,8 +15,8 @@ Please consider the effect of the changes in this merge request on the following
- Effects on [pipeline performance](https://about.gitlab.com/handbook/engineering/quality/performance-indicators/#average-merge-request-pipeline-duration-for-gitlab)
Please consider communicating these changes to the broader team following the [communication guideline for pipeline changes](https://about.gitlab.com/handbook/engineering/quality/engineering-productivity/#pipeline-changes)
-MESSAGE
+MSG
if helper.has_ci_changes?
- markdown(MESSAGE)
+ markdown(PIPELINE_CHANGES_MESSAGE)
end