From f19ddf2fe64b11510b2a743ecb73af5bb693d79d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Raby=C3=A2=20Raghib?= Date: Thu, 9 Sep 2021 23:06:10 +0100 Subject: [PATCH] fix: `Unexpected input(s)` warning for inputs: `config-file` & `manifest-file` (#356) Co-authored-by: Benjamin E. Coe --- action.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/action.yml b/action.yml index c3e54ed..3fe675d 100644 --- a/action.yml +++ b/action.yml @@ -56,6 +56,14 @@ inputs: description: 'add title pattern to make release PR, defaults to using "chore${scope}: release${component} ${version}".' required: false default: 'chore${scope}: release${component} ${version}' + config-file: + description: 'where can the config file be found in the project?' + required: false + default: '' + manifest-file: + description: 'where can the manifest file be found in the project?' + required: false + default: '' runs: using: 'node12'