56de781a2c
This reverts commit e00fb2bdc2090e9cabeb1eb35a2672a882cc96e9. # Conflicts: # .rubocop.yml # .rubocop_todo.yml # lib/gitlab/ci/config/entry/global.rb # lib/gitlab/ci/config/entry/jobs.rb # spec/lib/gitlab/ci/config/entry/factory_spec.rb # spec/lib/gitlab/ci/config/entry/global_spec.rb # spec/lib/gitlab/ci/config/entry/job_spec.rb # spec/lib/gitlab/ci/status/build/factory_spec.rb # spec/lib/gitlab/incoming_email_spec.rb
25 lines
548 B
Ruby
25 lines
548 B
Ruby
class GenericCommitStatus < CommitStatus
|
|
before_validation :set_default_values
|
|
|
|
validates :target_url, addressable_url: true,
|
|
length: { maximum: 255 },
|
|
allow_nil: true
|
|
|
|
# GitHub compatible API
|
|
alias_attribute :context, :name
|
|
|
|
def set_default_values
|
|
self.context ||= 'default'
|
|
self.stage ||= 'external'
|
|
end
|
|
|
|
def tags
|
|
[:external]
|
|
end
|
|
|
|
def detailed_status(current_user)
|
|
Gitlab::Ci::Status::External::Factory
|
|
.new(self, current_user)
|
|
.fabricate!
|
|
end
|
|
end
|