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

retry_failed_job.mutation.graphql « mutations « graphql « pipelines « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1955cc9b0ac512eddc239245e9fc7d020b9a69d2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
mutation retryFailedJob($id: CiBuildID!) {
  jobRetry(input: { id: $id }) {
    job {
      id
      detailedStatus {
        id
        detailsPath
      }
    }
    errors
  }
}