Skip to content

Commit ebe67ac

Browse files
updateclibot[bot]updatecli
andauthored
chore: chore: update Updatecli jsonschema (#2110)
Made with ❤️️ by updatecli Co-authored-by: updatecli <[email protected]>
1 parent d40828a commit ebe67ac

File tree

2 files changed

+132
-0
lines changed

2 files changed

+132
-0
lines changed

content/en/schema/latest/config.json

Lines changed: 66 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -906,6 +906,14 @@
906906
"type": "string",
907907
"description": "rootDir defines the root directory used to recursively search for golang go.mod"
908908
},
909+
"onlygoversion": {
910+
"type": "boolean",
911+
"description": "OnlyGoVersion allows to specify if the autodiscovery should only handle Go version specified in go.mod"
912+
},
913+
"onlygomodule": {
914+
"type": "boolean",
915+
"description": "OnlyGoModule allows to specify if the autodiscovery should only handle Go module specified in go.mod"
916+
},
909917
"ignore": {
910918
"items": {
911919
"properties": {
@@ -2335,6 +2343,20 @@
23352343
"parent": {
23362344
"type": "boolean",
23372345
"description": "parent allows to specifies if a pull request should be sent to the parent of the current fork.\n\ncompatible:\n * action\n\ndefault:\n false"
2346+
},
2347+
"reviewers": {
2348+
"items": {
2349+
"type": "string"
2350+
},
2351+
"type": "array",
2352+
"description": "Reviewers contains the list of assignee to add to the pull request\ncompatible:\n * action\n\ndefault: empty\n\nremark:\n * if reviewer is a team, the format is \"organization/team\" and the token must have organization read permission."
2353+
},
2354+
"assignees": {
2355+
"items": {
2356+
"type": "string"
2357+
},
2358+
"type": "array",
2359+
"description": "Assignees contains the list of assignee to add to the pull request\n\ndefault: empty\n\nremark:\n * Please note that contrary to reviewers, assignees only accept GitHub usernames"
23382360
}
23392361
},
23402362
"additionalProperties": false,
@@ -2377,6 +2399,10 @@
23772399
"type": "string",
23782400
"description": "\"token\" defines the credential used to authenticate with GitLab\n\n remark:\n A token is a sensitive information, it's recommended to not set this value directly in the configuration file\n but to use an environment variable or a SOPS file.\n\n The value can be set to `{{ requiredEnv \"GITLAB_TOKEN\"}}` to retrieve the token from the environment variable `GITLAB_TOKEN`\n\t or `{{ .gitlab.token }}` to retrieve the token from a SOPS file.\n\n\t For more information, about a SOPS file, please refer to the following documentation:\n https://github.com/getsops/sops"
23792401
},
2402+
"tokentype": {
2403+
"type": "string",
2404+
"description": "\"tokentype\" defines type of provided token. Valid values are \"private\" and \"bearer\"\n\n default:\n\t\t\"private\""
2405+
},
23802406
"sourcebranch": {
23812407
"type": "string",
23822408
"description": "\"sourcebranch\" defines the branch name used as a source to create the GitLab mergerequest.\n\n\t\tdefault:\n\t\t\t\"sourcebranch\" inherits the value from the scm branch if a scm of kind \"gitlab\" is specified by the action.\n\n\t\tremark:\n\t\t\tunless you know what you are doing, you shouldn't set this value and rely on the scmid to provide the sane default."
@@ -2881,6 +2907,10 @@
28812907
"type": "string",
28822908
"description": "\"token\" defines the credential used to authenticate with GitLab\n\n remark:\n A token is a sensitive information, it's recommended to not set this value directly in the configuration file\n but to use an environment variable or a SOPS file.\n\n The value can be set to `{{ requiredEnv \"GITLAB_TOKEN\"}}` to retrieve the token from the environment variable `GITLAB_TOKEN`\n\t or `{{ .gitlab.token }}` to retrieve the token from a SOPS file.\n\n\t For more information, about a SOPS file, please refer to the following documentation:\n https://github.com/getsops/sops"
28832909
},
2910+
"tokentype": {
2911+
"type": "string",
2912+
"description": "\"tokentype\" defines type of provided token. Valid values are \"private\" and \"bearer\"\n\n default:\n\t\t\"private\""
2913+
},
28842914
"commitmessage": {
28852915
"properties": {
28862916
"type": {
@@ -5458,6 +5488,10 @@
54585488
"type": "string",
54595489
"description": "\"token\" defines the credential used to authenticate with GitLab\n\n remark:\n A token is a sensitive information, it's recommended to not set this value directly in the configuration file\n but to use an environment variable or a SOPS file.\n\n The value can be set to `{{ requiredEnv \"GITLAB_TOKEN\"}}` to retrieve the token from the environment variable `GITLAB_TOKEN`\n\t or `{{ .gitlab.token }}` to retrieve the token from a SOPS file.\n\n\t For more information, about a SOPS file, please refer to the following documentation:\n https://github.com/getsops/sops"
54605490
},
5491+
"tokentype": {
5492+
"type": "string",
5493+
"description": "\"tokentype\" defines type of provided token. Valid values are \"private\" and \"bearer\"\n\n default:\n\t\t\"private\""
5494+
},
54615495
"owner": {
54625496
"type": "string",
54635497
"description": "[S][C] Owner specifies repository owner"
@@ -5642,6 +5676,10 @@
56425676
"type": "string",
56435677
"description": "\"token\" defines the credential used to authenticate with GitLab\n\n remark:\n A token is a sensitive information, it's recommended to not set this value directly in the configuration file\n but to use an environment variable or a SOPS file.\n\n The value can be set to `{{ requiredEnv \"GITLAB_TOKEN\"}}` to retrieve the token from the environment variable `GITLAB_TOKEN`\n\t or `{{ .gitlab.token }}` to retrieve the token from a SOPS file.\n\n\t For more information, about a SOPS file, please refer to the following documentation:\n https://github.com/getsops/sops"
56445678
},
5679+
"tokentype": {
5680+
"type": "string",
5681+
"description": "\"tokentype\" defines type of provided token. Valid values are \"private\" and \"bearer\"\n\n default:\n\t\t\"private\""
5682+
},
56455683
"owner": {
56465684
"type": "string",
56475685
"description": "[S][C][T] Owner specifies repository owner"
@@ -5846,6 +5884,10 @@
58465884
"type": "string",
58475885
"description": "\"token\" defines the credential used to authenticate with GitLab\n\n remark:\n A token is a sensitive information, it's recommended to not set this value directly in the configuration file\n but to use an environment variable or a SOPS file.\n\n The value can be set to `{{ requiredEnv \"GITLAB_TOKEN\"}}` to retrieve the token from the environment variable `GITLAB_TOKEN`\n\t or `{{ .gitlab.token }}` to retrieve the token from a SOPS file.\n\n\t For more information, about a SOPS file, please refer to the following documentation:\n https://github.com/getsops/sops"
58485886
},
5887+
"tokentype": {
5888+
"type": "string",
5889+
"description": "\"tokentype\" defines type of provided token. Valid values are \"private\" and \"bearer\"\n\n default:\n\t\t\"private\""
5890+
},
58495891
"owner": {
58505892
"type": "string",
58515893
"description": "[S][C] Owner specifies repository owner"
@@ -12354,6 +12396,10 @@
1235412396
"type": "string",
1235512397
"description": "\"token\" defines the credential used to authenticate with GitLab\n\n remark:\n A token is a sensitive information, it's recommended to not set this value directly in the configuration file\n but to use an environment variable or a SOPS file.\n\n The value can be set to `{{ requiredEnv \"GITLAB_TOKEN\"}}` to retrieve the token from the environment variable `GITLAB_TOKEN`\n\t or `{{ .gitlab.token }}` to retrieve the token from a SOPS file.\n\n\t For more information, about a SOPS file, please refer to the following documentation:\n https://github.com/getsops/sops"
1235612398
},
12399+
"tokentype": {
12400+
"type": "string",
12401+
"description": "\"tokentype\" defines type of provided token. Valid values are \"private\" and \"bearer\"\n\n default:\n\t\t\"private\""
12402+
},
1235712403
"owner": {
1235812404
"type": "string",
1235912405
"description": "[S][C] Owner specifies repository owner"
@@ -12547,6 +12593,10 @@
1254712593
"type": "string",
1254812594
"description": "\"token\" defines the credential used to authenticate with GitLab\n\n remark:\n A token is a sensitive information, it's recommended to not set this value directly in the configuration file\n but to use an environment variable or a SOPS file.\n\n The value can be set to `{{ requiredEnv \"GITLAB_TOKEN\"}}` to retrieve the token from the environment variable `GITLAB_TOKEN`\n\t or `{{ .gitlab.token }}` to retrieve the token from a SOPS file.\n\n\t For more information, about a SOPS file, please refer to the following documentation:\n https://github.com/getsops/sops"
1254912595
},
12596+
"tokentype": {
12597+
"type": "string",
12598+
"description": "\"tokentype\" defines type of provided token. Valid values are \"private\" and \"bearer\"\n\n default:\n\t\t\"private\""
12599+
},
1255012600
"owner": {
1255112601
"type": "string",
1255212602
"description": "[S][C][T] Owner specifies repository owner"
@@ -12760,6 +12810,10 @@
1276012810
"type": "string",
1276112811
"description": "\"token\" defines the credential used to authenticate with GitLab\n\n remark:\n A token is a sensitive information, it's recommended to not set this value directly in the configuration file\n but to use an environment variable or a SOPS file.\n\n The value can be set to `{{ requiredEnv \"GITLAB_TOKEN\"}}` to retrieve the token from the environment variable `GITLAB_TOKEN`\n\t or `{{ .gitlab.token }}` to retrieve the token from a SOPS file.\n\n\t For more information, about a SOPS file, please refer to the following documentation:\n https://github.com/getsops/sops"
1276212812
},
12813+
"tokentype": {
12814+
"type": "string",
12815+
"description": "\"tokentype\" defines type of provided token. Valid values are \"private\" and \"bearer\"\n\n default:\n\t\t\"private\""
12816+
},
1276312817
"owner": {
1276412818
"type": "string",
1276512819
"description": "[S][C] Owner specifies repository owner"
@@ -19592,6 +19646,10 @@
1959219646
"type": "string",
1959319647
"description": "\"token\" defines the credential used to authenticate with GitLab\n\n remark:\n A token is a sensitive information, it's recommended to not set this value directly in the configuration file\n but to use an environment variable or a SOPS file.\n\n The value can be set to `{{ requiredEnv \"GITLAB_TOKEN\"}}` to retrieve the token from the environment variable `GITLAB_TOKEN`\n\t or `{{ .gitlab.token }}` to retrieve the token from a SOPS file.\n\n\t For more information, about a SOPS file, please refer to the following documentation:\n https://github.com/getsops/sops"
1959419648
},
19649+
"tokentype": {
19650+
"type": "string",
19651+
"description": "\"tokentype\" defines type of provided token. Valid values are \"private\" and \"bearer\"\n\n default:\n\t\t\"private\""
19652+
},
1959519653
"owner": {
1959619654
"type": "string",
1959719655
"description": "[S][C] Owner specifies repository owner"
@@ -19794,6 +19852,10 @@
1979419852
"type": "string",
1979519853
"description": "\"token\" defines the credential used to authenticate with GitLab\n\n remark:\n A token is a sensitive information, it's recommended to not set this value directly in the configuration file\n but to use an environment variable or a SOPS file.\n\n The value can be set to `{{ requiredEnv \"GITLAB_TOKEN\"}}` to retrieve the token from the environment variable `GITLAB_TOKEN`\n\t or `{{ .gitlab.token }}` to retrieve the token from a SOPS file.\n\n\t For more information, about a SOPS file, please refer to the following documentation:\n https://github.com/getsops/sops"
1979619854
},
19855+
"tokentype": {
19856+
"type": "string",
19857+
"description": "\"tokentype\" defines type of provided token. Valid values are \"private\" and \"bearer\"\n\n default:\n\t\t\"private\""
19858+
},
1979719859
"owner": {
1979819860
"type": "string",
1979919861
"description": "[S][C][T] Owner specifies repository owner"
@@ -20016,6 +20078,10 @@
2001620078
"type": "string",
2001720079
"description": "\"token\" defines the credential used to authenticate with GitLab\n\n remark:\n A token is a sensitive information, it's recommended to not set this value directly in the configuration file\n but to use an environment variable or a SOPS file.\n\n The value can be set to `{{ requiredEnv \"GITLAB_TOKEN\"}}` to retrieve the token from the environment variable `GITLAB_TOKEN`\n\t or `{{ .gitlab.token }}` to retrieve the token from a SOPS file.\n\n\t For more information, about a SOPS file, please refer to the following documentation:\n https://github.com/getsops/sops"
2001820080
},
20081+
"tokentype": {
20082+
"type": "string",
20083+
"description": "\"tokentype\" defines type of provided token. Valid values are \"private\" and \"bearer\"\n\n default:\n\t\t\"private\""
20084+
},
2001920085
"owner": {
2002020086
"type": "string",
2002120087
"description": "[S][C] Owner specifies repository owner"

0 commit comments

Comments
 (0)