Welcome to mirror list, hosted at ThFree Co, Russian Federation.

auto_devops_queue.rb « concerns « workers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: cdf429a8be52297312ddf859d461d7a538075729 (plain)
1
2
3
4
5
6
7
8
9
10
# frozen_string_literal: true

module AutoDevopsQueue
  extend ActiveSupport::Concern

  included do
    queue_namespace :auto_devops
    feature_category :auto_devops
  end
end