File tree 1 file changed +4
-4
lines changed 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -124,19 +124,19 @@ jobs:
124
124
echo "List all the files that have changed: ${{ steps.changed-files-specific.outputs.all_changed_files }}"
125
125
126
126
# Example 3
127
- - name : Get all changed * .js file(s) or any file in the static folder excluding the docs folder
127
+ - name : Get all changed .js file(s) or any file in the static folder excluding the docs folder
128
128
id : changed-files-excluded
129
129
uses : tj-actions/changed-files@v36
130
130
with :
131
131
files : |
132
- **/* .js
132
+ **.js
133
133
static
134
134
files_ignore : docs
135
135
136
- - name : Run step if any * .js file(s) or any file in the static folder change
136
+ - name : Run step if any .js file(s) or any file in the static folder change
137
137
if : steps.changed-files-excluded.outputs.any_changed == 'true'
138
138
run : |
139
- echo "One or more * .js file(s) or any file in the static folder but not in the doc folder has changed."
139
+ echo "One or more .js file(s) or any file in the static folder but not in the doc folder has changed."
140
140
echo "List all the files that have changed: ${{ steps.changed-files-excluded.outputs.all_changed_files }}"
141
141
` ` `
142
142
You can’t perform that action at this time.
0 commit comments