Skip to content

Commit a5c5b24

Browse files
committed
more clarity
1 parent 5971839 commit a5c5b24

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/test.yaml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,11 @@ jobs:
5252
run: |
5353
echo "STATUS=$(git status --porcelain)" >> $GITHUB_OUTPUT
5454
55-
- name: Ensure no changes
55+
- name: No changes found
56+
if: steps.changes.outputs.STATUS == ''
57+
run: |
58+
echo "git status is clean"
59+
- name: Changes were found
5660
if: steps.changes.outputs.STATUS != ''
5761
run: |
5862
echo "JS dist files need to be rebuilt"

0 commit comments

Comments
 (0)