From 5ee2f5d4cf5d7bdd998a314a42da307e2ae1639d Mon Sep 17 00:00:00 2001 From: Peter Somogyvari Date: Sun, 3 Mar 2024 22:27:46 -0800 Subject: [PATCH] fix: Unexpected input(s) 'predicate-quantifier' Declared the input parameter in the action.yml file so GitHub should no longer complain about invalid input when we use the new feature. Fixes #225 Signed-off-by: Peter Somogyvari --- action.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/action.yml b/action.yml index e7d24f5c..545687d8 100644 --- a/action.yml +++ b/action.yml @@ -44,6 +44,16 @@ inputs: This option takes effect only when changes are detected using git against different base branch. required: false default: '100' + predicate-quantifier: + description: | + Makes the pattern evaluation customizable when it comes to matching files: + 'every'- When choosing 'every' in the config it means that files will only get matched if all the + patterns are satisfied by the path of the file, not just at least one of them. + 'some' - When choosing 'some' in the config it means that files will get matched as long as there is + at least one pattern that matches them. This is the default behavior if you don't + specify anything as a predicate quantifier. (default) + required: false + default: some outputs: changes: description: JSON array with names of all filters matching any of changed files