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

retried.rb « bridge « status « ci « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 101974f10f201a1780fd5b560da53a1f905da345 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# frozen_string_literal: true

module Gitlab
  module Ci
    module Status
      module Bridge
        class Retried < Status::Build::Retried
        end
      end
    end
  end
end