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 ...@@ -8,7 +8,7 @@ module Types
field :install_instructions, GraphQL::STRING_TYPE, null: false, field :install_instructions, GraphQL::STRING_TYPE, null: false,
description: 'Instructions for installing the runner on the specified architecture' 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' description: 'Instructions for registering the runner'
end end
end end
......
...@@ -18310,7 +18310,7 @@ type RunnerSetup { ...@@ -18310,7 +18310,7 @@ type RunnerSetup {
""" """
Instructions for registering the runner Instructions for registering the runner
""" """
registerInstructions: String! registerInstructions: String
} }
""" """
......
...@@ -52875,13 +52875,9 @@ ...@@ -52875,13 +52875,9 @@
], ],
"type": { "type": {
"kind": "NON_NULL", "kind": "SCALAR",
"name": null, "name": "String",
"ofType": { "ofType": null
"kind": "SCALAR",
"name": "String",
"ofType": null
}
}, },
"isDeprecated": false, "isDeprecated": false,
"deprecationReason": null "deprecationReason": null
...@@ -2595,7 +2595,7 @@ Autogenerated return type of RunDASTScan. ...@@ -2595,7 +2595,7 @@ Autogenerated return type of RunDASTScan.
| Field | Type | Description | | Field | Type | Description |
| ----- | ---- | ----------- | | ----- | ---- | ----------- |
| `installInstructions` | String! | Instructions for installing the runner on the specified architecture | | `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 ### 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