feat(ci): parse if there are any changes

This commit is contained in:
Mikołaj Młodzikowski 2023-09-19 10:04:46 +02:00 committed by Matthew Russell
parent e914e7bb70
commit 496d1f5c68

View File

@ -329,7 +329,9 @@ jobs:
fi
# create commit
commit_msg="Automated hash update from ${{ github.ref }}"
git commit -m "$commit_msg"
git push -u origin "main"
if ! git diff --cached --exit-code; then
commit_msg="Automated hash update from ${{ github.ref }}"
git commit -m "$commit_msg"
git push -u origin "main"
fi
)