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

get_runner_setup.query.graphql « queries « graphql « runner_instructions « components « vue_shared « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 643c19918073fb6fa00c8879f066c704672a554f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
query runnerSetupInstructions(
  $platform: String!
  $architecture: String!
  $projectId: ID!
  $groupId: ID!
) {
  runnerSetup(
    platform: $platform
    architecture: $architecture
    projectId: $projectId
    groupId: $groupId
  ) {
    installInstructions
    registerInstructions
  }
}