1
0
mirror of https://github.com/stefanzweifel/git-auto-commit-action.git synced 2026-02-03 07:23:13 +08:00
Files
commit-action/entrypoint.sh
Stefan Zweifel 3fe53a7d31 Add actions.yml
2019-08-20 20:43:07 +02:00

11 lines
315 B
Bash
Executable File

#!/bin/sh
set -eu
git config --global user.email "actions@github.com"
git config --global user.name "GitHub Actions"
git add -A
git status
git commit -m "$INPUT_COMMIT_MESSAGE" --author="$INPUT_COMMIT_AUTHOR_NAME <$INPUTCOMMIT_AUTHOR_EMAIL>" || echo "No changes found. Nothing to commit."
git push -u origin HEAD