Skip to content
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
6 changes: 6 additions & 0 deletions src/api/json/catalog.json
Original file line number Diff line number Diff line change
Expand Up @@ -1308,6 +1308,12 @@
],
"url": "https://raw.githubusercontent.com/dbt-labs/dbt-jsonschema/main/schemas/latest/dbt_yml_files-latest.json"
},
{
"name": "Debian Upstream Metadata file",
"description": "Debian packaging file for describing metadata about the upstream project",
"fileMatch": ["**/debian/upstream/metadata"],
"url": "https://salsa.debian.org/debian/debian-json-schemas/-/raw/main/schemas/debian-upstream-metadata/debian-upstream-metadata-latest.json"
},
{
"name": "Deck config",
"description": "Deck is a tool for creating presentation using Markdown and Google Slides",
Expand Down
27 changes: 21 additions & 6 deletions src/schemas/json/drone.json
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,8 @@
"required": ["limit"],
"properties": {
"limit": {
"type": "number"
"type": "number",
"description": "Defines the concurrency limits for the named pipeline\nhttps://docs.drone.io/yaml/exec/#the-concurrency-object"
}
}
},
Expand Down Expand Up @@ -350,13 +351,12 @@
"type": "object",
"properties": {
"depth": {
"type": "integer"
"type": "integer",
"description": "If empty the full repository may be cloned\nhttps://docs.drone.io/yaml/exec/#the-clone-object"
},
"disable": {
"const": true
},
"retries": {
"type": "integer"
"type": "boolean",
"description": "It can be useful when you need to disable implement your own custom clone logic.\nhttps://docs.drone.io/yaml/exec/#the-clone-object"
}
}
},
Expand All @@ -367,6 +367,9 @@
"trigger": {
"$ref": "#/definitions/allConditions"
},
"concurrency": {
"$ref": "#/definitions/concurrency"
},
"depends_on": {
"type": "array",
"items": {
Expand Down Expand Up @@ -475,6 +478,9 @@
"description": "The name of the service account to use when running the kubernetes pipeline",
"type": "string"
},
"concurrency": {
"$ref": "#/definitions/concurrency"
},
"kind": {},
"name": {},
"platform": {},
Expand All @@ -499,6 +505,9 @@
"node": {
"$ref": "#/definitions/node"
},
"concurrency": {
"$ref": "#/definitions/concurrency"
},
"kind": {},
"name": {},
"platform": {},
Expand Down Expand Up @@ -538,6 +547,9 @@
}
}
},
"concurrency": {
"$ref": "#/definitions/concurrency"
},
"kind": {},
"name": {},
"platform": {},
Expand All @@ -563,6 +575,9 @@
"$ref": "#/definitions/step_digitalocean"
}
},
"concurrency": {
"$ref": "#/definitions/concurrency"
},
"kind": {},
"name": {},
"platform": {},
Expand Down