Skip to content

Commit 5d5f22f

Browse files
committed
fix: pipe logic
Signed-off-by: Jason C. Leach <jason.leach@fullboar.ca>
1 parent cfd2b20 commit 5d5f22f

File tree

1 file changed

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

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ runs:
2626
echo "Comparing ${parent_ref} with ${child_ref}"
2727
2828
diff_output=$(git diff --name-only ${parent_ref}..${child_ref})
29-
change_count=$(echo "$diff_output" | grep -E '^(app/.*)|(.yarn/.*)|(.github/workflows/.*)' | wc -l | awk '{$1=$1};1' || true)
30-
# change_count=$(echo "$diff_output" | grep -E '^(blarb/.*)' | wc -l | awk '{$1=$1};1' || true)
29+
# change_count=$(echo "$diff_output" | grep -E '^(app/.*)|(.yarn/.*)|(.github/workflows/.*)' | wc -l | awk '{$1=$1};1' || true)
30+
change_count=$(echo "$diff_output" | grep -E '^(blarb/.*)' | wc -l | awk '{$1=$1};1' || true)
3131
3232
echo "$change_count files changed in app, .yarn, or .github/workflows"
3333

0 commit comments

Comments
 (0)