mirror of
https://github.com/ai-robots-txt/ai.robots.txt.git
synced 2025-04-04 11:03:59 +00:00
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:
parent
ca8620e28b
commit
83cd546470
1 changed files with 7 additions and 0 deletions
7
.github/workflows/main.yml
vendored
7
.github/workflows/main.yml
vendored
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue