allow Action to succeed even if no changes were made

Before, the Action would fail in case there were no changes made to any files by the converter.
This commit is contained in:
Fabian Egli 2025-01-06 11:39:41 +01:00 committed by GitHub
parent ca8620e28b
commit 83cd546470
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -32,6 +32,13 @@ jobs:
echo "... done."
git --no-pager diff
git add -A
if [ "$(git diff --staged)" ]; then
# To have the action run successfully, if no changes are staged, we
# manually skip the later commits because they fail with exit code 1
# and this would then display as a failure for the Action.
echo "No staged changes to commit. Skipping commit and push."
exit 0
fi
if [ -n "${{ inputs.message }}" ]; then
git commit -m "${{ inputs.message }}"
else