Skip to content

Commit

Permalink
fix: no run on some condition
Browse files Browse the repository at this point in the history
Signed-off-by: Jason C. Leach <[email protected]>
  • Loading branch information
jleach committed Oct 23, 2024
1 parent d550713 commit f19f5e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/actions/early-exit-check/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ runs:
shell: bash
run: |
change_count=$(git diff --name-only origin/main..HEAD | grep -E '^(app/.*)|(.yarn/.*)|(.github/workflows/.*)' | wc -l)
echo "${{ change_count }} files changed in app, .yarn, or .github/workflows"
echo "$change_count files changed in app, .yarn, or .github/workflows"
if [ $change_count -gt 0 ]; then
echo "result=false" >> $GITHUB_OUTPUT
else
Expand Down

0 comments on commit f19f5e7

Please sign in to comment.