mirror of
https://github.com/ai-robots-txt/ai.robots.txt.git
synced 2025-04-04 19:13: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."
|
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
|
||||||
|
|
Loading…
Reference in a new issue