2019-06-10 12:30:50 +00:00
|
|
|
|
#!/bin/sh
|
|
|
|
|
set -eu
|
|
|
|
|
|
2019-08-27 18:26:44 +00:00
|
|
|
|
# Switch to branch from current Workflow run
|
|
|
|
|
git switch "${GITHUB_REF:11}"
|
|
|
|
|
|
|
|
|
|
# Set origin URL
|
|
|
|
|
git remote set-url origin https://$TOKEN:x-oauth-basic@github.com/$GITHUB_REPOSITORY
|
|
|
|
|
|
2019-06-10 12:30:50 +00:00
|
|
|
|
git config --global user.email "actions@github.com"
|
2019-06-10 13:32:33 +00:00
|
|
|
|
git config --global user.name "GitHub Actions"
|
2019-06-10 12:30:50 +00:00
|
|
|
|
|
|
|
|
|
git add -A
|
|
|
|
|
git status
|
2019-08-20 18:51:00 +00:00
|
|
|
|
git commit -m "$INPUT_COMMIT_MESSAGE" --author="$INPUT_COMMIT_AUTHOR_NAME <$INPUT_COMMIT_AUTHOR_EMAIL>" || echo "No changes found. Nothing to commit."
|
2019-06-10 12:30:50 +00:00
|
|
|
|
git push -u origin HEAD
|