From f321aae8cb9790c3013973f7a851cd79fad1feb7 Mon Sep 17 00:00:00 2001 From: stephanmiehe Date: Wed, 9 Jun 2021 17:35:08 -0700 Subject: [PATCH 1/2] Explicit input definition updates --- action.yml | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/action.yml b/action.yml index 1e71b95..33c35ba 100644 --- a/action.yml +++ b/action.yml @@ -6,11 +6,20 @@ inputs: description: 'The GITHUB_TOKEN secret' required: true configuration-path: - description: 'Path to the labeler.yml configuration file' + description: 'Path to the labeler.yml configuration file' required: true enable-versioned-regex: - description: 'Controls if versioned regex templates are being used' + description: 'Controls if versioned regex templates are being used' required: true + versioned-regex: + description: 'The regex version number to use. Only required if using versioned regex files' + required: false + not-before: + description: 'is optional and will result in any issues prior to this timestamp to be ignored' + required: false + body-missing-regex-label: + description: 'The name of the label that should be added to an issue where the specified `version-regex` can not be found.' + required: false runs: using: 'node12' main: 'lib/main.js' From 863bf2aae94c4447ff958b482adae6d670a840e5 Mon Sep 17 00:00:00 2001 From: Stephan Miehe <49914758+stephanmiehe@users.noreply.github.com> Date: Wed, 9 Jun 2021 17:36:52 -0700 Subject: [PATCH 2/2] Update action.yml --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index 33c35ba..ee8012c 100644 --- a/action.yml +++ b/action.yml @@ -15,7 +15,7 @@ inputs: description: 'The regex version number to use. Only required if using versioned regex files' required: false not-before: - description: 'is optional and will result in any issues prior to this timestamp to be ignored' + description: 'Is optional and will result in any issues prior to this timestamp to be ignored' required: false body-missing-regex-label: description: 'The name of the label that should be added to an issue where the specified `version-regex` can not be found.'