Commit 577ba78d authored by Matija Čupić's avatar Matija Čupić

Make register_instructions optional in RunnerSetup

Updates the GraphQL schema to make register_instructions optional in the
RunnerSetup type.
parent 4c839b62
......@@ -8,7 +8,7 @@ module Types
field :install_instructions, GraphQL::STRING_TYPE, null: false,
description: 'Instructions for installing the runner on the specified architecture'
field :register_instructions, GraphQL::STRING_TYPE, null: false,
field :register_instructions, GraphQL::STRING_TYPE, null: true,
description: 'Instructions for registering the runner'
end
end
......
......@@ -18310,7 +18310,7 @@ type RunnerSetup {
"""
Instructions for registering the runner
"""
registerInstructions: String!
registerInstructions: String
}
"""
......
......@@ -52875,13 +52875,9 @@
],
"type": {
"kind": "NON_NULL",
"name": null,
"ofType": {
"kind": "SCALAR",
"name": "String",
"ofType": null
}
"kind": "SCALAR",
"name": "String",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
......@@ -2595,7 +2595,7 @@ Autogenerated return type of RunDASTScan.
| Field | Type | Description |
| ----- | ---- | ----------- |
| `installInstructions` | String! | Instructions for installing the runner on the specified architecture |
| `registerInstructions` | String! | Instructions for registering the runner |
| `registerInstructions` | String | Instructions for registering the runner |
### SastCiConfiguration
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment