summaryrefslogtreecommitdiff
path: root/app/workers/concerns/pipeline_queue.rb
blob: 27cbf6eb61c8e3118bef5547dde67398255f6e0d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# frozen_string_literal: true

##
# Concern for setting Sidekiq settings for the various CI pipeline workers.
#
module PipelineQueue
  extend ActiveSupport::Concern

  included do
    queue_namespace :pipeline_default
    feature_category :continuous_integration
  end
end