Skip to content

Commit 5ee2f5d

Browse files
committedMar 4, 2024
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 dorny#225 Signed-off-by: Peter Somogyvari <peter.somogyvari@accenture.com>
1 parent de90cc6 commit 5ee2f5d

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed
 

‎action.yml

+10
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,16 @@ inputs:
4444
This option takes effect only when changes are detected using git against different base branch.
4545
required: false
4646
default: '100'
47+
predicate-quantifier:
48+
description: |
49+
Makes the pattern evaluation customizable when it comes to matching files:
50+
'every'- When choosing 'every' in the config it means that files will only get matched if all the
51+
patterns are satisfied by the path of the file, not just at least one of them.
52+
'some' - When choosing 'some' in the config it means that files will get matched as long as there is
53+
at least one pattern that matches them. This is the default behavior if you don't
54+
specify anything as a predicate quantifier. (default)
55+
required: false
56+
default: some
4757
outputs:
4858
changes:
4959
description: JSON array with names of all filters matching any of changed files

0 commit comments

Comments
 (0)