Skip to content

Commit

Permalink
fixup! Only create a new commit if stats changed (#4881)
Browse files Browse the repository at this point in the history
  • Loading branch information
TSRBerry committed Mar 4, 2024
1 parent 5a0cce3 commit 284be2d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/label-stats.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ jobs:
- name: Check if files have been modified
id: mod_check
run: |
[[ $(git status -s | wc -l) -le 1 ]] \
[[ $(git status -s | wc -l) -lt 1 ]] \
&& echo "is-dirty=false" >> "$GITHUB_OUTPUT" \
|| echo "is-dirty=true" >> "$GITHUB_OUTPUT"
Expand Down

0 comments on commit 284be2d

Please sign in to comment.