Skip to content

Commit ee2571c

Browse files
committed
fix: code cleanup
Signed-off-by: Jason C. Leach <jason.leach@fullboar.ca>
1 parent 4b6de0a commit ee2571c

File tree

1 file changed

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

1 file changed

+3
-3
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ runs:
2121
echo "Comparing origin/${GITHUB_BASE_REF:-HEAD} with ${end_ref}"
2222
2323
change_count=$(
24-
git diff --name-only origin/${GITHUB_BASE_REF:-HEAD}..${end_ref} |\
25-
grep -E '^(app/.*)|(.yarn/.*)|(.github/workflows/.*)' |\
26-
wc -l |\
24+
git diff --name-only origin/${GITHUB_BASE_REF:-HEAD}..${end_ref} | \
25+
grep -E '^(app/.*)|(.yarn/.*)|(.github/workflows/.*)' | \
26+
wc -l | \
2727
awk '{$1=$1};1'
2828
)
2929
echo "$change_count files changed in app, .yarn, or .github/workflows"

0 commit comments

Comments
 (0)