Skip to content

Commit 25dd26b

Browse files
authored
Fix missing includes parameter for buf.yaml modules (SchemaStore#4753)
This adds a missing includes field for the `buf.yaml` json schema.
1 parent 8ef142b commit 25dd26b

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

src/schemas/json/buf.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1196,6 +1196,14 @@
11961196
"description": "Optional. A Buf Schema Registry (BSR) path that uniquely identifies this directory. The name must be a valid module name and it defines the BSR repository that contains the commit and label history and generated artifacts for the Protobuf files in the directory.",
11971197
"type": "string"
11981198
},
1199+
"includes": {
1200+
"$comment": "https://buf.build/docs/configuration/v2/buf-yaml#includes",
1201+
"description": "Optional. Lists directories within this directory to include in Protobuf file discovery. Only directories added to this list are included in Buf operations.",
1202+
"type": "array",
1203+
"items": {
1204+
"type": "string"
1205+
}
1206+
},
11991207
"excludes": {
12001208
"$comment": "https://buf.build/docs/configuration/v2/buf-yaml#excludes",
12011209
"description": "Optional. Lists directories within this directory to exclude from Protobuf file discovery. Any directories added to this list are completely skipped and excluded from Buf operations. We don't recommend using this option, but in some situations it's unavoidable.",

0 commit comments

Comments
 (0)