diff --git a/docs/usage/configuration-options.md b/docs/usage/configuration-options.md index 44d64746130ac159fcf2bb9551cc5bc33e14003c..f10d61d4eeb6d5b6d7f09ab78c306b4e496989b9 100644 --- a/docs/usage/configuration-options.md +++ b/docs/usage/configuration-options.md @@ -2470,9 +2470,16 @@ e.g. if you wish to add an extra Warning to major updates: ## prBodyTemplate -This setting controls which sections are rendered in the body of the pull request. - -The available sections are header, table, notes, changelogs, configDescription, controls, footer. +The available sections are: + +- `header` +- `table` +- `warnings` +- `notes` +- `changelogs` +- `configDescription` +- `controls` +- `footer` ## prConcurrentLimit diff --git a/lib/config/options/index.ts b/lib/config/options/index.ts index e140838639592a47aa070fafce6b7816246dc142..f178e974decf58159457997abab05c62aeafd527 100644 --- a/lib/config/options/index.ts +++ b/lib/config/options/index.ts @@ -1832,7 +1832,7 @@ const options: RenovateOptions[] = [ { name: 'prBodyTemplate', description: - 'Pull Request body template. Controls which sections are rendered in the body.', + 'Pull Request body template. Controls which sections are rendered in the body of the pull request.', type: 'string', default: '{{{header}}}{{{table}}}{{{warnings}}}{{{notes}}}{{{changelogs}}}{{{configDescription}}}{{{controls}}}{{{footer}}}',