mirror of
https://github.com/ai-robots-txt/ai.robots.txt.git
synced 2025-04-04 03:03:57 +00:00
Merge pull request #66 from fabianegli/patch-1
Allow Action to succeed even if no changes were made
This commit is contained in:
commit
b7f908e305
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 [ -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
|
||||
git commit -m "${{ inputs.message }}"
|
||||
else
|
||||
|
|
Loading…
Reference in a new issue