Skip to content

Commit 1660a12

Browse files
committed
add verbosity
1 parent 2055967 commit 1660a12

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/pr-deploy.yaml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ jobs:
112112
ref: ${{ steps.pr_info.outputs.PR_BRANCH }}
113113
fetch-depth: 0
114114

115-
- name: check changed files
115+
- name: Check changed files
116116
uses: dorny/paths-filter@v2
117117
id: filter
118118
with:
@@ -132,6 +132,12 @@ jobs:
132132
- "scripts/**/*[^D][^o][^c][^k][^e][^r][^f][^i][^l][^e]*"
133133
- "scripts/**/*[^D][^o][^c][^k][^e][^r][^f][^i][^l][^e][.][b][^a][^s][^e]*"
134134
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+
135141
build:
136142
needs: get_info
137143
# Skips the build job if the workflow was triggered by a workflow_dispatch event and the skip_build input is set to true

0 commit comments

Comments
 (0)