module Gitlab::Client::Pipelines

def retry_pipeline(project, id)

Returns:
  • (Array) - The pipelines changes.

Parameters:
  • id (Integer) -- The ID of a pipeline.
  • project (Integer, String) -- The ID or name of a project.
def retry_pipeline(project, id)
  post("/projects/#{url_encode project}/pipelines/#{id}/retry")
end