We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4b6de0a commit ee2571cCopy full SHA for ee2571c
.github/workflows/actions/early-exit-check/action.yml
@@ -21,9 +21,9 @@ runs:
21
echo "Comparing origin/${GITHUB_BASE_REF:-HEAD} with ${end_ref}"
22
23
change_count=$(
24
- git diff --name-only origin/${GITHUB_BASE_REF:-HEAD}..${end_ref} |\
25
- grep -E '^(app/.*)|(.yarn/.*)|(.github/workflows/.*)' |\
26
- wc -l |\
+ git diff --name-only origin/${GITHUB_BASE_REF:-HEAD}..${end_ref} | \
+ grep -E '^(app/.*)|(.yarn/.*)|(.github/workflows/.*)' | \
+ wc -l | \
27
awk '{$1=$1};1'
28
)
29
echo "$change_count files changed in app, .yarn, or .github/workflows"
0 commit comments