"hellen-one: looks like nothing to commit"

This commit is contained in:
rusefillc 2024-01-07 14:32:48 -05:00
parent bfee9cb3b8
commit e27acac083
1 changed files with 13 additions and 1 deletions

View File

@ -29,10 +29,22 @@ jobs:
git config --local user.email "action@github.com"
git config --local user.name "GitHub git update Action"
git add hellen-one
git commit -am "GHA says update hellen-one"
OUT=$(git commit -am "GHA says update hellen-one" 2>&1) || echo "commit failed, finding out why"
if echo "$OUT" | grep 'nothing to commit'; then
echo "hellen-one: looks like nothing to commit"
echo "NOCOMMIT=true" >> $GITHUB_ENV
exit 0
elif echo "$OUT" | grep 'changed'; then
echo "hellen-one: looks like something has changed"
exit 0
else
echo "hellen-one: looks like something unexpected"
exit 1
fi
git status
- name: Push
if: ${{ env.NOCOMMIT != 'true'}}
uses: ad-m/github-push-action@master
with:
github_token: ${{ github.token }}