summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2022-12-15 12:08:09 +0000
committerGitLab Bot <gitlab-bot@gitlab.com>2022-12-15 12:08:09 +0000
commit37439afe69efe58e2351d899d231670d945be5e2 (patch)
tree0bb4989879fcc18396c013741a3a21c7cc1cb637 /scripts
parent8353b844b31ebfa1181014e5a409ba93c22d8ad0 (diff)
downloadgitlab-ce-37439afe69efe58e2351d899d231670d945be5e2.tar.gz
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/create-pipeline-failure-incident.rb2
-rwxr-xr-xscripts/trigger-build.rb2
2 files changed, 2 insertions, 2 deletions
diff --git a/scripts/create-pipeline-failure-incident.rb b/scripts/create-pipeline-failure-incident.rb
index bbabfb7dfce..92d8444c7cd 100755
--- a/scripts/create-pipeline-failure-incident.rb
+++ b/scripts/create-pipeline-failure-incident.rb
@@ -99,7 +99,7 @@ class CreatePipelineFailureIncident
You can create a merge request, assign to any available maintainer, and ping people that were involved/related to the introduction of the failure.
Additionally, a message can be posted in `#backend_maintainers` or `#frontend_maintainers` to get a maintainer take a look at the fix ASAP.
- In both cases, make sure to add the ~"pipeline:expedite-master-fixing" label, and `master:broken` or `master:foss-broken` label, to speed up the `master`-fixing pipelines.
+ In both cases, make sure to add the ~"pipeline:expedite" label, and `master:broken` or `master:foss-broken` label, to speed up the `master`-fixing pipelines.
### Resolution
diff --git a/scripts/trigger-build.rb b/scripts/trigger-build.rb
index 8dfab8dd2eb..411e5ed13c6 100755
--- a/scripts/trigger-build.rb
+++ b/scripts/trigger-build.rb
@@ -153,7 +153,7 @@ module Trigger
# Read version files from all components
def version_file_variables
- Dir.glob("*_VERSION").each_with_object({}) do |version_file, params|
+ Dir.glob("*_VERSION").each_with_object({}) do |version_file, params| # rubocop:disable Rails/IndexWith
params[version_file] = version_param_value(version_file)
end
end