Commit 8c2c3ede authored by Jan Provaznik's avatar Jan Provaznik

Merge branch 'feature_cat_cleanup' into 'master'

Clean up feature_category for static analysis group

See merge request gitlab-org/gitlab!63545
parents 2eb9b6eb d5deb539
...@@ -8,6 +8,6 @@ module SecurityScansQueue ...@@ -8,6 +8,6 @@ module SecurityScansQueue
included do included do
queue_namespace :security_scans queue_namespace :security_scans
feature_category :static_application_security_testing feature_category :vulnerability_management
end end
end end
...@@ -13,7 +13,7 @@ module Projects ...@@ -13,7 +13,7 @@ module Projects
push_frontend_feature_flag(:vulnerability_management_survey, type: :ops, default_enabled: :yaml) push_frontend_feature_flag(:vulnerability_management_survey, type: :ops, default_enabled: :yaml)
end end
feature_category :static_application_security_testing feature_category :vulnerability_management
end end
end end
end end
...@@ -784,7 +784,7 @@ ...@@ -784,7 +784,7 @@
:tags: [] :tags: []
- :name: security_scans:scan_security_report_secrets - :name: security_scans:scan_security_report_secrets
:worker_name: ScanSecurityReportSecretsWorker :worker_name: ScanSecurityReportSecretsWorker
:feature_category: :static_application_security_testing :feature_category: :secret_detection
:has_external_dependencies: true :has_external_dependencies: true
:urgency: :low :urgency: :low
:resource_boundary: :cpu :resource_boundary: :cpu
...@@ -793,7 +793,7 @@ ...@@ -793,7 +793,7 @@
:tags: [] :tags: []
- :name: security_scans:security_store_scans - :name: security_scans:security_store_scans
:worker_name: Security::StoreScansWorker :worker_name: Security::StoreScansWorker
:feature_category: :static_application_security_testing :feature_category: :vulnerability_management
:has_external_dependencies: :has_external_dependencies:
:urgency: :low :urgency: :low
:resource_boundary: :unknown :resource_boundary: :unknown
...@@ -803,7 +803,7 @@ ...@@ -803,7 +803,7 @@
- :exclude_from_kubernetes - :exclude_from_kubernetes
- :name: security_scans:store_security_reports - :name: security_scans:store_security_reports
:worker_name: StoreSecurityReportsWorker :worker_name: StoreSecurityReportsWorker
:feature_category: :static_application_security_testing :feature_category: :vulnerability_management
:has_external_dependencies: :has_external_dependencies:
:urgency: :low :urgency: :low
:resource_boundary: :cpu :resource_boundary: :cpu
...@@ -812,7 +812,7 @@ ...@@ -812,7 +812,7 @@
:tags: [] :tags: []
- :name: security_scans:store_security_scans - :name: security_scans:store_security_scans
:worker_name: StoreSecurityScansWorker :worker_name: StoreSecurityScansWorker
:feature_category: :static_application_security_testing :feature_category: :vulnerability_management
:has_external_dependencies: :has_external_dependencies:
:urgency: :low :urgency: :low
:resource_boundary: :unknown :resource_boundary: :unknown
...@@ -821,7 +821,7 @@ ...@@ -821,7 +821,7 @@
:tags: [] :tags: []
- :name: security_scans:sync_security_reports_to_report_approval_rules - :name: security_scans:sync_security_reports_to_report_approval_rules
:worker_name: SyncSecurityReportsToReportApprovalRulesWorker :worker_name: SyncSecurityReportsToReportApprovalRulesWorker
:feature_category: :static_application_security_testing :feature_category: :vulnerability_management
:has_external_dependencies: :has_external_dependencies:
:urgency: :high :urgency: :high
:resource_boundary: :cpu :resource_boundary: :cpu
......
...@@ -4,7 +4,9 @@ ...@@ -4,7 +4,9 @@
# #
class ScanSecurityReportSecretsWorker # rubocop:disable Scalability/IdempotentWorker class ScanSecurityReportSecretsWorker # rubocop:disable Scalability/IdempotentWorker
include ApplicationWorker include ApplicationWorker
include SecurityScansQueue
queue_namespace :security_scans
feature_category :secret_detection
worker_resource_boundary :cpu worker_resource_boundary :cpu
......
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