Merge pull request #66 from fabianegli/patch-1

Allow Action to succeed even if no changes were made
This commit is contained in:
Glyn Normington 2025-01-07 03:54:40 +00:00 committed by GitHub
commit b7f908e305
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -32,6 +32,13 @@ jobs:
echo "... done." echo "... done."
git --no-pager diff git --no-pager diff
git add -A git add -A
if [ -z "$(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 if [ -n "${{ inputs.message }}" ]; then
git commit -m "${{ inputs.message }}" git commit -m "${{ inputs.message }}"
else else