Skip to content

Commit c696751

Browse files
authored
Merge pull request #409 from hugovk/update-github-workflows.json
Update vendored schemas
2 parents dbc50c6 + 4268c51 commit c696751

17 files changed

+428
-173
lines changed

CHANGELOG.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ Unreleased
1010

1111
.. vendor-insert-here
1212
13+
- Update vendored schemas (2024-03-28)
14+
1315
0.28.0
1416
------
1517

src/check_jsonschema/builtin_schemas/vendor/buildkite.json

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"title": "JSON schema for Buildkite pipeline configuration files",
3-
"$schema": "http://json-schema.org/draft-06/schema#",
3+
"$schema": "http://json-schema.org/draft-07/schema#",
44
"fileMatch": [
55
"buildkite.yml",
66
"buildkite.yaml",
@@ -90,7 +90,8 @@
9090
"agent_refused",
9191
"agent_stop",
9292
"cancel",
93-
"process_run_error"
93+
"process_run_error",
94+
"signature_rejected"
9495
]
9596
}
9697
},
@@ -326,6 +327,14 @@
326327
"What’s the code name for this release? :name_badge:"
327328
]
328329
},
330+
"format": {
331+
"type": "string",
332+
"description": "The format must be a regular expression implicitly anchored to the beginning and end of the input and is functionally equivalent to the HTML5 pattern attribute.",
333+
"format": "regex",
334+
"examples": [
335+
"[0-9a-f]+"
336+
]
337+
},
329338
"required": {
330339
"type": "boolean",
331340
"default": true,
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
31ccdd15c66d956fc260988de3794f85f8ad66e5091f433a315d7f471c3fd045
1+
c0c0a79a4c90d3038ad128eb795f6419b7847c852ab63a0ab421af60eb6b6279

src/check_jsonschema/builtin_schemas/vendor/cloudbuild.json

Lines changed: 85 additions & 63 deletions
Large diffs are not rendered by default.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
b51b3b818b212cba8f88a36f1903b15bc22f4bfdd466dc607d1513097dfa1c44
1+
474e44b301e178962532c55fec47821df1830766feda209c357c8f8a1ae4e585

src/check_jsonschema/builtin_schemas/vendor/dependabot.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -663,6 +663,7 @@
663663
"npm",
664664
"nuget",
665665
"pip",
666+
"pip-compile",
666667
"pub",
667668
"swift",
668669
"terraform"
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
f5e0bc96fc566d0e37aec0bf0c80308a5a5ba49683c18f7c6ce983e5326be27c
1+
1ca8e8e09124a16930e7f6434b596e07c0835c2a7ed0857cb2c8aec67efb5039

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -388,6 +388,7 @@
388388
"type": "string",
389389
"enum": [
390390
"white",
391+
"black",
391392
"yellow",
392393
"blue",
393394
"green",
@@ -494,7 +495,6 @@
494495
"external-link",
495496
"eye-off",
496497
"eye",
497-
"facebook",
498498
"fast-forward",
499499
"feather",
500500
"file-minus",
@@ -613,6 +613,7 @@
613613
"sun",
614614
"sunrise",
615615
"sunset",
616+
"table",
616617
"tablet",
617618
"tag",
618619
"target",
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0817878cce449ba9b92ac9b90280105b39d83f282974592b29b2112c8bb227dd
1+
9f0c77d226f811a208e6b0c839ae93df6848b35687d8309041504352252dbbf9

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

Lines changed: 1 addition & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -267,7 +267,7 @@
267267
"issue_comment",
268268
"issues",
269269
"label",
270-
"member",
270+
"merge_group",
271271
"milestone",
272272
"page_build",
273273
"project",
@@ -1102,21 +1102,6 @@
11021102
}
11031103
}
11041104
},
1105-
"member": {
1106-
"$comment": "https://help.github.com/en/github/automating-your-workflow-with-github-actions/events-that-trigger-workflows#member-event-member",
1107-
"$ref": "#/definitions/eventObject",
1108-
"description": "Runs your workflow anytime the member event occurs. More than one activity type triggers this event. For information about the REST API, see https://developer.github.com/v3/repos/collaborators/.",
1109-
"properties": {
1110-
"types": {
1111-
"$ref": "#/definitions/types",
1112-
"items": {
1113-
"type": "string",
1114-
"enum": ["added", "edited", "deleted"]
1115-
},
1116-
"default": ["added", "edited", "deleted"]
1117-
}
1118-
}
1119-
},
11201105
"merge_group": {
11211106
"$comment": "https://help.github.com/en/github/automating-your-workflow-with-github-actions/events-that-trigger-workflows#merge_group",
11221107
"$ref": "#/definitions/eventObject",

0 commit comments

Comments
 (0)