Commit dfe3e580 authored by Sincheol (David) Kim's avatar Sincheol (David) Kim Committed by Bob Van Landuyt

Set 'High' Custom Error Budget Thresholds

parent 3bb0b5ab
......@@ -59,6 +59,8 @@ class GroupsController < Groups::ApplicationController
feature_category :projects, [:projects]
feature_category :importers, [:export, :download_export]
urgency :high, [:unfoldered_environment_names]
def index
redirect_to(current_user ? dashboard_groups_path : explore_groups_path)
end
......
......@@ -79,6 +79,8 @@ class Projects::MergeRequestsController < Projects::MergeRequests::ApplicationCo
feature_category :infrastructure_as_code, [:terraform_reports]
feature_category :continuous_integration, [:pipeline_status, :pipelines, :exposed_artifacts]
urgency :high, [:export_csv]
def index
@merge_requests = @issuables
......
......@@ -51,7 +51,9 @@ class ProjectsController < Projects::ApplicationController
feature_category :team_planning, [:preview_markdown, :new_issuable_address]
feature_category :importers, [:export, :remove_export, :generate_new_export, :download_export]
feature_category :code_review, [:unfoldered_environment_names]
urgency :low, [:refs]
urgency :high, [:unfoldered_environment_names]
def index
redirect_to(current_user ? root_path : explore_root_path)
......
......@@ -31,6 +31,8 @@ module EE
feature_category :metrics, [:metrics_reports]
feature_category :license_compliance, [:license_scanning_reports]
feature_category :code_review, [:delete_description_version, :description_diff]
urgency :high, [:delete_description_version]
end
def can_run_sast_experiments_on?(project)
......
......@@ -303,7 +303,7 @@ module API
desc 'Get the context commits of a merge request' do
success Entities::Commit
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])
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