FAQ | This is a LIVE service | Changelog

Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • uis/devops/continuous-delivery/gitlab-triage
1 result
Show changes
Commits on Source (2)
......@@ -20,6 +20,9 @@ variables:
# repository. This helps ensure that we don't get an explosion of container registry repositories
# with a single tag in for every branch which ever existed.
CI_APPLICATION_REPOSITORY: $CI_REGISTRY_IMAGE
# RuboCop currently compatible with Ruby 2.6 https://docs.rubocop.org/rubocop/1.74/compatibility.html
# and below and required for code quality, so disable code quality check for now.
CODE_QUALITY_DISABLED: "1"
pre-commit:
rules:
......
......@@ -6,4 +6,3 @@ ruby '3.4.2'
gem 'gitlab-triage', '~> 1.44', '>= 1.44.3'
gem 'csv'
gem 'racc'
gem 'rubocop', '~> 1.60'
......@@ -14,15 +14,14 @@ GEM
securerandom (>= 0.3)
tzinfo (~> 2.0, >= 2.0.5)
uri (>= 0.13.1)
ast (2.4.2)
base64 (0.2.0)
benchmark (0.4.0)
bigdecimal (3.1.9)
concurrent-ruby (1.3.5)
connection_pool (2.5.0)
csv (3.3.2)
csv (3.3.3)
drb (2.2.1)
gitlab-triage (1.44.3)
gitlab-triage (1.44.4)
activesupport (>= 5.1)
globalid (~> 1.0, >= 1.0.1)
graphql (< 2.1.0)
......@@ -40,44 +39,18 @@ GEM
multi_xml (>= 0.5.2)
i18n (1.14.7)
concurrent-ruby (~> 1.0)
json (2.10.2)
language_server-protocol (3.17.0.4)
lint_roller (1.1.0)
logger (1.6.6)
mime-types (3.6.1)
mime-types (3.6.2)
logger
mime-types-data (~> 3.2015)
mime-types-data (3.2025.0304)
mime-types-data (3.2025.0318)
minitest (5.25.5)
multi_xml (0.7.1)
bigdecimal (~> 3.1)
parallel (1.26.3)
parser (3.3.7.1)
ast (~> 2.4.1)
racc
racc (1.8.1)
rainbow (3.1.1)
regexp_parser (2.10.0)
rubocop (1.74.0)
json (~> 2.3)
language_server-protocol (~> 3.17.0.2)
lint_roller (~> 1.1.0)
parallel (~> 1.10)
parser (>= 3.3.0.2)
rainbow (>= 2.2.2, < 4.0)
regexp_parser (>= 2.9.3, < 3.0)
rubocop-ast (>= 1.38.0, < 2.0)
ruby-progressbar (~> 1.7)
unicode-display_width (>= 2.4.0, < 4.0)
rubocop-ast (1.39.0)
parser (>= 3.3.1.0)
ruby-progressbar (1.13.0)
securerandom (0.4.1)
tzinfo (2.0.6)
concurrent-ruby (~> 1.0)
unicode-display_width (3.1.4)
unicode-emoji (~> 4.0, >= 4.0.4)
unicode-emoji (4.0.4)
uri (1.0.3)
PLATFORMS
......@@ -88,7 +61,6 @@ DEPENDENCIES
csv
gitlab-triage (~> 1.44, >= 1.44.3)
racc
rubocop (~> 1.60)
RUBY VERSION
ruby 3.4.2p28
......