git-auto-commit-action/entrypoint.sh

11 lines
298 B
Bash
Raw Normal View History

2019-06-10 12:30:50 +00:00
#!/bin/sh
set -eu
git config --global user.email "actions@github.com"
git config --global user.name "Github Actions"
git add -A
git status
2019-06-10 13:32:31 +00:00
git commit -m "$COMMIT_MESSAGE" --author="$COMMIT_AUTHOR_NAME <$COMMIT_AUTHOR_EMAIL>" || echo "No changes found. Nothing to commit."
2019-06-10 12:30:50 +00:00
git push -u origin HEAD