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

job_retry_with_variables.mutation.graphql « mutations « graphql « job_details « ci « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: cd66a30ce63634cf99dedc37219e4d2d3c20092d (plain)
1
2
3
4
5
6
7
8
9
10
11
#import "~/ci/job_details/graphql/fragments/ci_job.fragment.graphql"

mutation retryJobWithVariables($id: CiBuildID!, $variables: [CiVariableInput!]) {
  jobRetry(input: { id: $id, variables: $variables }) {
    job {
      ...BaseCiJob
      webPath
    }
    errors
  }
}