Skip to content

Commit e45491d

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

File tree

1 file changed

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

1 file changed

+2
-1
lines changed

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +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)
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)
3031
3132
echo "$change_count files changed in app, .yarn, or .github/workflows"
3233

0 commit comments

Comments
 (0)