Skip to content

Commit b0ab8e0

Browse files
Update .github/workflows/update-contributors.yml
Co-authored-by: ellipsis-dev[bot] <65095814+ellipsis-dev[bot]@users.noreply.github.com>
1 parent 548f25b commit b0ab8e0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/update-contributors.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
- name: Update contributors and check for changes
2828
run: |
2929
npm run update-contributors
30-
git diff --quiet README.md || echo "changes=true" >> $GITHUB_OUTPUT
30+
if git diff --quiet README.md; then echo "changes=false" >> $GITHUB_OUTPUT; else echo "changes=true" >> $GITHUB_OUTPUT; fi
3131
id: check-changes
3232
env:
3333
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)