Skip to content

Commit f19f5e7

Browse files
committed
fix: no run on some condition
Signed-off-by: Jason C. Leach <jason.leach@fullboar.ca>
1 parent d550713 commit f19f5e7

File tree

1 file changed

+1
-1
lines changed
  • .github/workflows/actions/early-exit-check

1 file changed

+1
-1
lines changed

.github/workflows/actions/early-exit-check/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ runs:
1111
shell: bash
1212
run: |
1313
change_count=$(git diff --name-only origin/main..HEAD | grep -E '^(app/.*)|(.yarn/.*)|(.github/workflows/.*)' | wc -l)
14-
echo "${{ change_count }} files changed in app, .yarn, or .github/workflows"
14+
echo "$change_count files changed in app, .yarn, or .github/workflows"
1515
if [ $change_count -gt 0 ]; then
1616
echo "result=false" >> $GITHUB_OUTPUT
1717
else

0 commit comments

Comments
 (0)