Skip to content

Commit 050cf93

Browse files
fix: add missing generic updaters in to release please config schema extraFiles (#2344)
Co-authored-by: Jeff Ching <chingor@google.com>
1 parent e562ee2 commit 050cf93

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

schemas/config.json

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -188,6 +188,25 @@
188188
}
189189
},
190190
"required": ["type", "path"]
191+
},
192+
{
193+
"description": "An extra arbitrary file that includes release-please generic updater's annotation.",
194+
"type": "object",
195+
"properties": {
196+
"type": {
197+
"description": "The file format type.",
198+
"enum": ["generic"]
199+
},
200+
"path": {
201+
"description": "The path to the file.",
202+
"type": "string"
203+
},
204+
"glob": {
205+
"description": "Whether to treat the path as a glob. Defaults to `false`.",
206+
"type": "boolean"
207+
}
208+
},
209+
"required": ["type", "path"]
191210
}
192211
]
193212
}

0 commit comments

Comments
 (0)