Commit 7afc0894 authored by Bob Van Landuyt's avatar Bob Van Landuyt

Merge branch '346802-set-high-custom-error-budget-thresholds' into 'master'

Set 'High' Custom Error Budget Thresholds

See merge request gitlab-org/gitlab!76075
parents 47a789eb dfe3e580
...@@ -59,6 +59,8 @@ class GroupsController < Groups::ApplicationController ...@@ -59,6 +59,8 @@ class GroupsController < Groups::ApplicationController
feature_category :projects, [:projects] feature_category :projects, [:projects]
feature_category :importers, [:export, :download_export] feature_category :importers, [:export, :download_export]
urgency :high, [:unfoldered_environment_names]
def index def index
redirect_to(current_user ? dashboard_groups_path : explore_groups_path) redirect_to(current_user ? dashboard_groups_path : explore_groups_path)
end end
......
...@@ -79,6 +79,8 @@ class Projects::MergeRequestsController < Projects::MergeRequests::ApplicationCo ...@@ -79,6 +79,8 @@ class Projects::MergeRequestsController < Projects::MergeRequests::ApplicationCo
feature_category :infrastructure_as_code, [:terraform_reports] feature_category :infrastructure_as_code, [:terraform_reports]
feature_category :continuous_integration, [:pipeline_status, :pipelines, :exposed_artifacts] feature_category :continuous_integration, [:pipeline_status, :pipelines, :exposed_artifacts]
urgency :high, [:export_csv]
def index def index
@merge_requests = @issuables @merge_requests = @issuables
......
...@@ -51,7 +51,9 @@ class ProjectsController < Projects::ApplicationController ...@@ -51,7 +51,9 @@ class ProjectsController < Projects::ApplicationController
feature_category :team_planning, [:preview_markdown, :new_issuable_address] feature_category :team_planning, [:preview_markdown, :new_issuable_address]
feature_category :importers, [:export, :remove_export, :generate_new_export, :download_export] feature_category :importers, [:export, :remove_export, :generate_new_export, :download_export]
feature_category :code_review, [:unfoldered_environment_names] feature_category :code_review, [:unfoldered_environment_names]
urgency :low, [:refs] urgency :low, [:refs]
urgency :high, [:unfoldered_environment_names]
def index def index
redirect_to(current_user ? root_path : explore_root_path) redirect_to(current_user ? root_path : explore_root_path)
......
...@@ -31,6 +31,8 @@ module EE ...@@ -31,6 +31,8 @@ module EE
feature_category :metrics, [:metrics_reports] feature_category :metrics, [:metrics_reports]
feature_category :license_compliance, [:license_scanning_reports] feature_category :license_compliance, [:license_scanning_reports]
feature_category :code_review, [:delete_description_version, :description_diff] feature_category :code_review, [:delete_description_version, :description_diff]
urgency :high, [:delete_description_version]
end end
def can_run_sast_experiments_on?(project) def can_run_sast_experiments_on?(project)
......
...@@ -303,7 +303,7 @@ module API ...@@ -303,7 +303,7 @@ module API
desc 'Get the context commits of a merge request' do desc 'Get the context commits of a merge request' do
success Entities::Commit success Entities::Commit
end end
get ':id/merge_requests/:merge_request_iid/context_commits', feature_category: :code_review do get ':id/merge_requests/:merge_request_iid/context_commits', feature_category: :code_review, urgency: :high do
merge_request = find_merge_request_with_access(params[:merge_request_iid]) merge_request = find_merge_request_with_access(params[:merge_request_iid])
project = merge_request.project project = merge_request.project
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment