File tree 1 file changed +7
-1
lines changed 1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -112,7 +112,7 @@ jobs:
112
112
ref : ${{ steps.pr_info.outputs.PR_BRANCH }}
113
113
fetch-depth : 0
114
114
115
- - name : check changed files
115
+ - name : Check changed files
116
116
uses : dorny/paths-filter@v2
117
117
id : filter
118
118
with :
@@ -132,6 +132,12 @@ jobs:
132
132
- "scripts/**/*[^D][^o][^c][^k][^e][^r][^f][^i][^l][^e]*"
133
133
- "scripts/**/*[^D][^o][^c][^k][^e][^r][^f][^i][^l][^e][.][b][^a][^s][^e]*"
134
134
135
+ - name : Print number of changed files
136
+ run : |
137
+ set -euxo pipefail
138
+ echo "Total number of changed files: ${{ steps.filter.outputs.all_count }}"
139
+ echo "Number of ignored files: ${{ steps.filter.outputs.ignored_count }}"
140
+
135
141
build :
136
142
needs : get_info
137
143
# Skips the build job if the workflow was triggered by a workflow_dispatch event and the skip_build input is set to true
You can’t perform that action at this time.
0 commit comments