Skip to content

Commit c8ec5b7

Browse files
[vendor-schemas] automated update (#590)
Co-authored-by: sirosen <[email protected]>
1 parent be6e0c9 commit c8ec5b7

File tree

13 files changed

+133
-62
lines changed

13 files changed

+133
-62
lines changed

CHANGELOG.rst

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@ Unreleased
1111
.. vendor-insert-here
1212
1313
- Update vendored schemas: bitbucket-pipelines, buildkite, compose-spec, dependabot,
14-
github-actions, gitlab-ci, meltano, mergify, renovate (2025-08-10)
14+
github-actions, gitlab-ci, meltano, mergify, renovate, taskfile, woodpecker-ci
15+
(2025-08-17)
1516

1617
0.33.2
1718
------

src/check_jsonschema/builtin_schemas/vendor/buildkite.json

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,23 @@
3434
"ubuntu:22.04"
3535
]
3636
},
37+
"allowedTeams": {
38+
"description": "A list of teams that are permitted to unblock this step, whose values are a list of one or more team slugs or IDs",
39+
"anyOf": [
40+
{
41+
"type": "string"
42+
},
43+
{
44+
"type": "array",
45+
"items": { "type": "string" }
46+
}
47+
],
48+
"examples": [
49+
"frontend-team",
50+
"96176d08-f503-413f-8423-96094953b9e7",
51+
["frontend-team", "backend-team", "96176d08-f503-413f-8423-96094953b9e7"]
52+
]
53+
},
3754
"agents": {
3855
"oneOf": [
3956
{ "$ref": "#/definitions/agentsObject" },
@@ -589,6 +606,9 @@
589606
"prompt": {
590607
"$ref": "#/definitions/prompt"
591608
},
609+
"allowed_teams": {
610+
"$ref": "#/definitions/allowedTeams"
611+
},
592612
"type": {
593613
"type": "string",
594614
"enum": [ "block" ]
@@ -651,6 +671,9 @@
651671
"prompt": {
652672
"$ref": "#/definitions/prompt"
653673
},
674+
"allowed_teams": {
675+
"$ref": "#/definitions/allowedTeams"
676+
},
654677
"type": {
655678
"type": "string",
656679
"enum": [ "input" ]

src/check_jsonschema/builtin_schemas/vendor/dependabot.json

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -669,7 +669,8 @@
669669
"pub",
670670
"swift",
671671
"terraform",
672-
"uv"
672+
"uv",
673+
"vcpkg"
673674
]
674675
},
675676
"schedule-day": {
@@ -816,6 +817,15 @@
816817
"type": "string",
817818
"default": "/"
818819
},
820+
"exclude-paths": {
821+
"description": "List of file paths to exclude from dependency updates",
822+
"type": "array",
823+
"minItems": 0,
824+
"uniqueItems": true,
825+
"items": {
826+
"type": "string"
827+
}
828+
},
819829
"groups": {
820830
"description": "Configure groups for dependencies. Each 'groups' property is arbitrary will appear in pull request titles and branch names. For example, the code snippet '{\"groups\": {\"NPM dependencies\": {\"patterns\": [\"*\"]}}}' sets the group name to 'NPM dependencies'.",
821831
"type": "object",
@@ -978,16 +988,6 @@
978988
}
979989
]
980990
},
981-
"reviewers": {
982-
"type": "array",
983-
"items": {
984-
"type": "string",
985-
"minLength": 1
986-
},
987-
"description": "Specify individual reviewers or teams of reviewers for all pull requests raised for a package manager. You must use the full team name, including the organization, as if you were @mentioning the team.",
988-
"minItems": 1,
989-
"uniqueItems": true
990-
},
991991
"schedule": {
992992
"description": "Schedule preferences",
993993
"type": "object",

src/check_jsonschema/builtin_schemas/vendor/gitlab-ci.json

Lines changed: 0 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -1084,27 +1084,6 @@
10841084
}
10851085
]
10861086
},
1087-
"akeyless": {
1088-
"type": "object",
1089-
"properties": {
1090-
"name": {
1091-
"type": "string"
1092-
},
1093-
"data_key": {
1094-
"type": "string"
1095-
},
1096-
"cert_user_name": {
1097-
"type": "string"
1098-
},
1099-
"public_key_data": {
1100-
"type": "string"
1101-
},
1102-
"csr_data": {
1103-
"type": "string"
1104-
}
1105-
},
1106-
"additionalProperties": false
1107-
},
11081087
"file": {
11091088
"type": "boolean",
11101089
"default": true,
@@ -1135,11 +1114,6 @@
11351114
"required": [
11361115
"aws_secrets_manager"
11371116
]
1138-
},
1139-
{
1140-
"required": [
1141-
"akeyless"
1142-
]
11431117
}
11441118
],
11451119
"dependencies": {

src/check_jsonschema/builtin_schemas/vendor/renovate.json

Lines changed: 74 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2072,6 +2072,59 @@
20722072
]
20732073
}
20742074
},
2075+
"crow": {
2076+
"description": "Configuration object for the crow manager",
2077+
"type": "object",
2078+
"default": {
2079+
"managerFilePatterns": [
2080+
"/^\\.crow(?:/[^/]+)?\\.ya?ml$/"
2081+
]
2082+
},
2083+
"$ref": "#",
2084+
"items": {
2085+
"allOf": [
2086+
{
2087+
"type": "object",
2088+
"properties": {
2089+
"description": {
2090+
"oneOf": [
2091+
{
2092+
"type": "array",
2093+
"items": {
2094+
"type": "string",
2095+
"description": "A custom description for this configuration object"
2096+
}
2097+
},
2098+
{
2099+
"type": "string",
2100+
"description": "A custom description for this configuration object"
2101+
}
2102+
]
2103+
},
2104+
"enabled": {
2105+
"description": "Enable or disable corresponding functionality.",
2106+
"type": "boolean",
2107+
"default": true
2108+
},
2109+
"managerFilePatterns": {
2110+
"description": "RegEx (`re2`) and glob patterns for matching manager files.",
2111+
"oneOf": [
2112+
{
2113+
"type": "array",
2114+
"items": {
2115+
"type": "string"
2116+
}
2117+
},
2118+
{
2119+
"type": "string"
2120+
}
2121+
]
2122+
}
2123+
}
2124+
}
2125+
]
2126+
}
2127+
},
20752128
"customDatasources": {
20762129
"description": "Defines custom datasources for usage by managers.",
20772130
"type": "object",
@@ -2262,6 +2315,11 @@
22622315
},
22632316
"default": null
22642317
},
2318+
"deleteAdditionalConfigFile": {
2319+
"description": "If set to `true`, Renovate tries to delete the additional self-hosted config file after reading it.",
2320+
"type": "boolean",
2321+
"default": false
2322+
},
22652323
"deleteConfigFile": {
22662324
"description": "If set to `true`, Renovate tries to delete the self-hosted config file after reading it.",
22672325
"type": "boolean",
@@ -3830,7 +3888,8 @@
38303888
},
38313889
"commitMessageTopic": "helm chart {{depName}}",
38323890
"managerFilePatterns": [
3833-
"/(^|/)helmfile\\.ya?ml(?:\\.gotmpl)?$/"
3891+
"/(^|/)helmfile\\.ya?ml(?:\\.gotmpl)?$/",
3892+
"/(^|/)helmfile\\.d/.+\\.ya?ml(?:\\.gotmpl)?$/"
38343893
]
38353894
},
38363895
"$ref": "#",
@@ -5108,6 +5167,11 @@
51085167
],
51095168
"default": null
51105169
},
5170+
"minimumGroupSize": {
5171+
"description": "The minimum number of updates which must be in a group for branches to be created.",
5172+
"type": "integer",
5173+
"default": 1
5174+
},
51115175
"minimumReleaseAge": {
51125176
"description": "Time required before a new release is considered stable.",
51135177
"type": [
@@ -6684,6 +6748,8 @@
66846748
"type": "string",
66856749
"enum": [
66866750
"bundlerConservative",
6751+
"composerWithAll",
6752+
"dotnetWorkloadRestore",
66876753
"gomodMassage",
66886754
"gomodTidy",
66896755
"gomodTidy1.17",
@@ -7809,6 +7875,11 @@
78097875
]
78107876
}
78117877
},
7878+
"skipArtifactsUpdate": {
7879+
"description": "Skip Renovate's automatic artifact updating.",
7880+
"type": "boolean",
7881+
"default": false
7882+
},
78127883
"skipInstalls": {
78137884
"description": "Skip installing modules/dependencies if lock file updating is possible without a full install.",
78147885
"type": [
@@ -8015,7 +8086,8 @@
80158086
"default": {
80168087
"commitMessageTopic": "Terraform {{depName}}",
80178088
"managerFilePatterns": [
8018-
"/\\.tf$/"
8089+
"**/*.tf",
8090+
"**/*.tofu"
80198091
],
80208092
"pinDigests": false
80218093
},
@@ -8411,11 +8483,6 @@
84118483
"type": "boolean",
84128484
"default": false
84138485
},
8414-
"updateLockFiles": {
8415-
"description": "Set to `false` to disable lock file updating.",
8416-
"type": "boolean",
8417-
"default": true
8418-
},
84198486
"updateNotScheduled": {
84208487
"description": "Whether to update branches when not scheduled. Renovate will not create branches outside of the schedule.",
84218488
"type": "boolean",
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
ce390fe2608b3e56440063313354a7b03e6f38156a406f9df14827da53a99da2
1+
603532d17f6ab44cd097eae28f710f8a0684d571e195b5d65dd06cb3d5d38c94
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
6076a7e91fa0380898c6f1cff0254c784f87138c2fdfb5197dc7b12500465f4e
1+
86ca19079ea3906ba2ee8705c18f2743b1fad1a863cdaf18021977587f7aeaf9
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
f4b7d2d4bc2c15714a014fa746824e73edf37506b03ae451cfe996cc657168e0
1+
eb0354c4c0fd87a1d5ac4f9c98ab075bef8f397e38611c78f9599803bc36c0e5
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
030a783a9461320bc6b3f42dee9003488aa12c18ba60495027497943cb5b0ae0
1+
c30b930cec3bd5fd22a206fb9c58a11b64389e1ec8def332742011d65167a4d6
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
91fcacea6f24a246fcf83ceaebb7b182a0e63670ce5ee19a3eb25a40c0251185
1+
6122f6e200fa9c87cc1f553d247739f9c815647a3c6433e15237ebc682dfb3f4

0 commit comments

Comments
 (0)