From 0849a1e2e07e99801bb84094e41db710ca83c4d8 Mon Sep 17 00:00:00 2001 From: Simon Gilli <25326036+gilbertsoft@users.noreply.github.com> Date: Mon, 15 Aug 2022 12:51:31 +0200 Subject: [PATCH] Add missing inputs to action config Providing header or footer leads to a warning and the inputs are ignored by the action. These two inputs are explicitly mentioned at https://github.com/release-drafter/release-drafter#action-inputs. This patch fixes the behavior to finally comply with the docs. --- action.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/action.yml b/action.yml index 6d02f059f..18d190dd2 100644 --- a/action.yml +++ b/action.yml @@ -43,6 +43,16 @@ inputs: The object that the release should be created to point to. required: false default: '' + header: + description: | + A string that would be added before the template body. + required: false + default: '' + footer: + description: | + A string that would be added after the template body. + required: false + default: '' disable-releaser: description: | A boolean indicating whether the releaser mode is disabled.