debian-mirror-gitlab/app/graphql/mutations/ci/job/retry.rb

30 lines
601 B
Ruby
Raw Normal View History

2021-06-08 01:23:25 +05:30
# frozen_string_literal: true
module Mutations
module Ci
module Job
class Retry < Base
graphql_name 'JobRetry'
field :job,
Types::Ci::JobType,
null: true,
2021-10-27 15:23:28 +05:30
description: 'Job after the mutation.'
2021-06-08 01:23:25 +05:30
authorize :update_build
def resolve(id:)
job = authorized_find!(id: id)
project = job.project
::Ci::RetryBuildService.new(project, current_user).execute(job)
{
job: job,
errors: errors_on_object(job)
}
end
end
end
end
end