Skip to content

Commit 69f50c9

Browse files
[vendor-schemas] automated update (#241)
Co-authored-by: sirosen <[email protected]> Co-authored-by: Stephen Rosen <[email protected]>
1 parent ee9893d commit 69f50c9

File tree

5 files changed

+35
-10
lines changed

5 files changed

+35
-10
lines changed

CHANGELOG.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Unreleased
1010

1111
.. vendor-insert-here
1212
13-
- Update vendored schemas (2023-02-18)
13+
- Update vendored schemas (2023-03-08)
1414
- The ``check-dependabot`` hook now also supports ``.github/dependabot.yaml``
1515
Thanks :user:`noorul`!
1616
- Fix a mistake in the dependency bound for ``jsonschema``, which was intended

src/check_jsonschema/builtin_schemas/vendor/github-workflows.json

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -821,7 +821,14 @@
821821
"timeout-minutes": {
822822
"$comment": "https://help.github.com/en/actions/automating-your-workflow-with-github-actions/workflow-syntax-for-github-actions#jobsjob_idstepstimeout-minutes",
823823
"description": "The maximum number of minutes to run the step before killing the process.",
824-
"type": "number"
824+
"oneOf": [
825+
{
826+
"type": "number"
827+
},
828+
{
829+
"$ref": "#/definitions/expressionSyntax"
830+
}
831+
]
825832
}
826833
},
827834
"dependencies": {
@@ -837,7 +844,14 @@
837844
"timeout-minutes": {
838845
"$comment": "https://help.github.com/en/actions/automating-your-workflow-with-github-actions/workflow-syntax-for-github-actions#jobsjob_idtimeout-minutes",
839846
"description": "The maximum number of minutes to let a workflow run before GitHub automatically cancels it. Default: 360",
840-
"type": "number",
847+
"oneOf": [
848+
{
849+
"type": "number"
850+
},
851+
{
852+
"$ref": "#/definitions/expressionSyntax"
853+
}
854+
],
841855
"default": 360
842856
},
843857
"strategy": {
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
b4b86b4a7c1b554725c3f761715a8599a416f1ab7ba7b2d730b05a7f4a4f2017
1+
153c2bd5f6ad6fa15cc24c7863c310941116a4c689028e0a69f0beede91b01d0

src/check_jsonschema/builtin_schemas/vendor/renovate.json

Lines changed: 16 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -202,8 +202,11 @@
202202
"default": 0
203203
},
204204
"baseBranches": {
205-
"description": "An array of one or more custom base branches to be processed. If left empty, the default branch will be chosen.",
206-
"type": "array"
205+
"description": "List of one or more custom base branches defined as exact strings and/or via regex expressions.",
206+
"type": "array",
207+
"items": {
208+
"type": "string"
209+
}
207210
},
208211
"baseDir": {
209212
"description": "The base directory for Renovate to store local files, including repository files and cache. If left empty, Renovate will create its own temporary directory to use.",
@@ -800,6 +803,11 @@
800803
"type": "boolean",
801804
"default": true
802805
},
806+
"forkModeDisallowMaintainerEdits": {
807+
"description": "Disallow maintainers to push to Renovate pull requests when running in fork mode.",
808+
"type": "boolean",
809+
"default": false
810+
},
803811
"forkToken": {
804812
"description": "Set a personal access token here to enable \"fork mode\".",
805813
"type": "string"
@@ -1912,7 +1920,8 @@
19121920
"digest",
19131921
"lockFileMaintenance",
19141922
"rollback",
1915-
"bump"
1923+
"bump",
1924+
"replacement"
19161925
]
19171926
}
19181927
},
@@ -1927,7 +1936,8 @@
19271936
"digest",
19281937
"lockFileMaintenance",
19291938
"rollback",
1930-
"bump"
1939+
"bump",
1940+
"replacement"
19311941
]
19321942
}
19331943
]
@@ -2563,7 +2573,8 @@
25632573
"default": {
25642574
"fileMatch": [
25652575
"\\.sbt$",
2566-
"project/[^/]*.scala$"
2576+
"project/[^/]*\\.scala$",
2577+
"project/build\\.properties$"
25672578
],
25682579
"versioning": "ivy"
25692580
},
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
92b063612edf1b30340001d9a45446a6a8138abc38bd6c9d2b6b173e6279148e
1+
3f5efba6d2fd6434a0e196e1aecfaf91a46ff3f7a62ba2ac68ff50bf3ba31ed9

0 commit comments

Comments
 (0)