Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update @readme/openapi-parser #1004

Merged
merged 2 commits into from
May 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
47 changes: 26 additions & 21 deletions __tests__/helpers/github-workflow-schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -264,27 +264,32 @@
"matrix": {
"$comment": "https://help.github.com/en/actions/automating-your-workflow-with-github-actions/workflow-syntax-for-github-actions#jobsjob_idstrategymatrix",
"description": "A build matrix is a set of different configurations of the virtual environment. For example you might run a job against more than one supported version of a language, operating system, or tool. Each configuration is a copy of the job that runs and reports a status.\nYou can specify a matrix by supplying an array for the configuration options. For example, if the GitHub virtual environment supports Node.js versions 6, 8, and 10 you could specify an array of those versions in the matrix.\nWhen you define a matrix of operating systems, you must set the required runs-on keyword to the operating system of the current job, rather than hard-coding the operating system name. To access the operating system name, you can use the matrix.os context parameter to set runs-on. For more information, see https://help.github.com/en/articles/contexts-and-expression-syntax-for-github-actions.",
"oneOf": [{ "type": "object" }, { "$ref": "#/definitions/expressionSyntax" }],
"patternProperties": {
"^(in|ex)clude$": {
"$comment": "https://help.github.com/en/actions/automating-your-workflow-with-github-actions/workflow-syntax-for-github-actions#example-including-configurations-in-a-matrix-build",
"oneOf": [
{ "$ref": "#/definitions/expressionSyntax" },
{
"type": "array",
"items": { "type": "object", "additionalProperties": { "$ref": "#/definitions/configuration" } },
"minItems": 1
"oneOf": [
{
"type": "object",
"patternProperties": {
"^(in|ex)clude$": {
"$comment": "https://help.github.com/en/actions/automating-your-workflow-with-github-actions/workflow-syntax-for-github-actions#example-including-configurations-in-a-matrix-build",
"oneOf": [
{ "$ref": "#/definitions/expressionSyntax" },
{
"type": "array",
"items": { "type": "object", "additionalProperties": { "$ref": "#/definitions/configuration" } },
"minItems": 1
}
]
}
]
}
},
"additionalProperties": {
"oneOf": [
{ "type": "array", "items": { "$ref": "#/definitions/configuration" }, "minItems": 1 },
{ "$ref": "#/definitions/expressionSyntax" }
]
},
"minProperties": 1
},
"additionalProperties": {
"oneOf": [
{ "type": "array", "items": { "$ref": "#/definitions/configuration" }, "minItems": 1 },
{ "$ref": "#/definitions/expressionSyntax" }
]
},
"minProperties": 1
},
{ "$ref": "#/definitions/expressionSyntax" }
]
},
"reusableWorkflowCallJob": {
"$comment": "https://docs.github.com/en/actions/learn-github-actions/reusing-workflows#calling-a-reusable-workflow",
Expand Down Expand Up @@ -392,7 +397,7 @@
"oneOf": [{ "type": "string" }, { "$ref": "#/definitions/environment" }]
},
"outputs": {
"$comment": "https://help.github.com/en/actions/reference/workflow-syntax-for-github-actions#jobsjobs_idoutputs",
"$comment": "https://help.github.com/en/actions/reference/workflow-syntax-for-github-actions#jobsjob_idoutputs",
"description": "A map of outputs for a job. Job outputs are available to all downstream jobs that depend on this job.",
"type": "object",
"additionalProperties": { "type": "string" },
Expand Down
26 changes: 13 additions & 13 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.