From 0e9a452969f716be9282c96ba61e37b4f884f3ea Mon Sep 17 00:00:00 2001 From: Sebastian Poxhofer <secustor@users.noreply.github.com> Date: Wed, 29 Nov 2023 09:12:12 +0100 Subject: [PATCH] docs(datasource/custom): fixs false header size and missing format type (#26023) --- lib/modules/datasource/custom/readme.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/modules/datasource/custom/readme.md b/lib/modules/datasource/custom/readme.md index 863d51800f..b8e326cd4e 100644 --- a/lib/modules/datasource/custom/readme.md +++ b/lib/modules/datasource/custom/readme.md @@ -10,7 +10,7 @@ Options: | option | default | description | | -------------------------- | ------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | | defaultRegistryUrlTemplate | "" | URL used if no `registryUrl` is provided when looking up new releases | -| format | "json" | format used by the API. Available values are: `json`, `plain`, `html` | +| format | "json" | format used by the API. Available values are: `json`, `plain`, `yaml`, `html` | | transformTemplates | [] | [JSONata rules](https://docs.jsonata.org/simple) to transform the API output. Each rule will be evaluated after another and the result will be used as input to the next | Available template variables: @@ -119,7 +119,7 @@ When Renovate receives this response with the `plain` format, it will convert it After the conversion, any `jsonata` rules defined in the `transformTemplates` section will be applied as usual to further process the JSON data. -### Yaml +#### Yaml If `yaml` is used, response is parsed and converted into JSON for further processing. -- GitLab