Skip to content

Commit 61ff008

Browse files
Updating config schema.
1 parent d414928 commit 61ff008

File tree

1 file changed

+27
-27
lines changed

1 file changed

+27
-27
lines changed

config_schema.json

Lines changed: 27 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,13 @@
11
{
22
"fields": [
33
{
4-
"name": "sync-secrets",
5-
"description": "Whether to sync secrets or not",
6-
"boolField": {}
4+
"name": "app-privatekey-path",
5+
"description": "Path to private key that is used to connect to the GitHub App",
6+
"stringField": {}
77
},
88
{
9-
"name": "otel-collector-endpoint-tls-insecure",
10-
"description": "Allow insecure connections to the OpenTelemetry collector",
11-
"isOps": true,
9+
"name": "sync-secrets",
10+
"description": "Whether to sync secrets or not",
1211
"boolField": {}
1312
},
1413
{
@@ -17,34 +16,17 @@
1716
"isOps": true,
1817
"stringField": {}
1918
},
20-
{
21-
"name": "otel-collector-endpoint-tls-cert",
22-
"description": "A PEM-encoded certificate to use as a CA for TLS connections to the OpenTelemetry collector",
23-
"isOps": true,
24-
"stringField": {}
25-
},
2619
{
2720
"name": "otel-logging-disabled",
2821
"description": "Disable OpenTelemetry logging",
2922
"isOps": true,
3023
"boolField": {}
3124
},
32-
{
33-
"name": "otel-tracing-disabled",
34-
"description": "Disable OpenTelemetry tracing",
35-
"isOps": true,
36-
"boolField": {}
37-
},
3825
{
3926
"name": "instance-url",
4027
"description": "The GitHub instance URL to connect to. (default \"https://github.com\")",
4128
"stringField": {}
4229
},
43-
{
44-
"name": "app-privatekey-path",
45-
"description": "Path to private key that is used to connect to the GitHub App",
46-
"stringField": {}
47-
},
4830
{
4931
"name": "log-level",
5032
"description": "The log level: debug, info, warn, error",
@@ -54,8 +36,8 @@
5436
}
5537
},
5638
{
57-
"name": "app-id",
58-
"description": "The GitHub App to connect to.",
39+
"name": "token",
40+
"description": "The GitHub access token used to connect to the GitHub API.",
5941
"stringField": {}
6042
},
6143
{
@@ -65,14 +47,32 @@
6547
"stringField": {}
6648
},
6749
{
68-
"name": "token",
69-
"description": "The GitHub access token used to connect to the GitHub API.",
50+
"name": "otel-collector-endpoint-tls-cert",
51+
"description": "A PEM-encoded certificate to use as a CA for TLS connections to the OpenTelemetry collector",
52+
"isOps": true,
53+
"stringField": {}
54+
},
55+
{
56+
"name": "otel-tracing-disabled",
57+
"description": "Disable OpenTelemetry tracing",
58+
"isOps": true,
59+
"boolField": {}
60+
},
61+
{
62+
"name": "app-id",
63+
"description": "The GitHub App to connect to.",
7064
"stringField": {}
7165
},
7266
{
7367
"name": "orgs",
7468
"description": "Limit syncing to specific organizations.",
7569
"stringSliceField": {}
70+
},
71+
{
72+
"name": "otel-collector-endpoint-tls-insecure",
73+
"description": "Allow insecure connections to the OpenTelemetry collector",
74+
"isOps": true,
75+
"boolField": {}
7676
}
7777
],
7878
"constraints": [

0 commit comments

Comments
 (0)