Skip to content

Commit 7fb91b0

Browse files
Updating config schema.
1 parent 0425788 commit 7fb91b0

File tree

1 file changed

+36
-36
lines changed

1 file changed

+36
-36
lines changed

config_schema.json

Lines changed: 36 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,38 @@
11
{
22
"fields": [
33
{
4-
"name": "app-id",
5-
"description": "The GitHub App to connect to.",
4+
"name": "log-level",
5+
"description": "The log level: debug, info, warn, error",
6+
"isOps": true,
7+
"stringField": {
8+
"defaultValue": "info"
9+
}
10+
},
11+
{
12+
"name": "token",
13+
"description": "The GitHub access token used to connect to the GitHub API.",
614
"stringField": {}
715
},
816
{
9-
"name": "otel-tracing-disabled",
10-
"description": "Disable OpenTelemetry tracing",
17+
"name": "instance-url",
18+
"description": "The GitHub instance URL to connect to. (default \"https://github.com\")",
19+
"stringField": {}
20+
},
21+
{
22+
"name": "otel-collector-endpoint-tls-cert-path",
23+
"description": "Path to a file containing a PEM-encoded certificate to use as a CA for TLS connections to the OpenTelemetry collector",
24+
"isOps": true,
25+
"stringField": {}
26+
},
27+
{
28+
"name": "otel-collector-endpoint-tls-insecure",
29+
"description": "Allow insecure connections to the OpenTelemetry collector",
30+
"isOps": true,
31+
"boolField": {}
32+
},
33+
{
34+
"name": "otel-logging-disabled",
35+
"description": "Disable OpenTelemetry logging",
1136
"isOps": true,
1237
"boolField": {}
1338
},
@@ -22,57 +47,32 @@
2247
"isOps": true,
2348
"stringField": {}
2449
},
25-
{
26-
"name": "otel-collector-endpoint-tls-cert-path",
27-
"description": "Path to a file containing a PEM-encoded certificate to use as a CA for TLS connections to the OpenTelemetry collector",
28-
"isOps": true,
29-
"stringField": {}
30-
},
3150
{
3251
"name": "sync-secrets",
3352
"description": "Whether to sync secrets or not",
3453
"boolField": {}
3554
},
3655
{
37-
"name": "otel-collector-endpoint-tls-cert",
38-
"description": "A PEM-encoded certificate to use as a CA for TLS connections to the OpenTelemetry collector",
39-
"isOps": true,
56+
"name": "app-id",
57+
"description": "The GitHub App to connect to.",
4058
"stringField": {}
4159
},
4260
{
43-
"name": "log-level",
44-
"description": "The log level: debug, info, warn, error",
45-
"isOps": true,
46-
"stringField": {
47-
"defaultValue": "info"
48-
}
49-
},
50-
{
51-
"name": "otel-logging-disabled",
52-
"description": "Disable OpenTelemetry logging",
61+
"name": "otel-tracing-disabled",
62+
"description": "Disable OpenTelemetry tracing",
5363
"isOps": true,
5464
"boolField": {}
5565
},
5666
{
57-
"name": "instance-url",
58-
"description": "The GitHub instance URL to connect to. (default \"https://github.com\")",
67+
"name": "otel-collector-endpoint-tls-cert",
68+
"description": "A PEM-encoded certificate to use as a CA for TLS connections to the OpenTelemetry collector",
69+
"isOps": true,
5970
"stringField": {}
6071
},
6172
{
6273
"name": "app-privatekey-path",
6374
"description": "Path to private key that is used to connect to the GitHub App",
6475
"stringField": {}
65-
},
66-
{
67-
"name": "otel-collector-endpoint-tls-insecure",
68-
"description": "Allow insecure connections to the OpenTelemetry collector",
69-
"isOps": true,
70-
"boolField": {}
71-
},
72-
{
73-
"name": "token",
74-
"description": "The GitHub access token used to connect to the GitHub API.",
75-
"stringField": {}
7676
}
7777
],
7878
"constraints": [

0 commit comments

Comments
 (0)