File tree 1 file changed +6
-1
lines changed 1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -13,6 +13,10 @@ inputs:
13
13
description : ' Output string separator.'
14
14
required : false
15
15
default : " "
16
+ match-gitignore-files :
17
+ description : ' Indicates whether to match files in `.gitignore`'
18
+ default : " true"
19
+ required : true
16
20
17
21
outputs :
18
22
files_changed :
33
37
files-separator : ${{ inputs.files-separator }}
34
38
separator : " |"
35
39
match-directories : false
36
- match-gitignore-files : true
40
+ match-gitignore-files : ${{ inputs.match-gitignore-files }}
37
41
- run : |
38
42
bash $GITHUB_ACTION_PATH/entrypoint.sh
39
43
id: verify-changed-files
45
49
# https://github.community/t/input-variable-name-is-not-available-in-composite-run-steps/127611
46
50
INPUT_FILES_PATTERN_FILE: ${{ steps.glob.outputs.paths-output-file }}
47
51
INPUT_SEPARATOR: ${{ inputs.separator }}
52
+ INPUT_MATCH_GITIGNORE_FILES: ${{ inputs.match-gitignore-files }}
48
53
49
54
branding :
50
55
icon : file-text
You can’t perform that action at this time.
0 commit comments