1
0
mirror of https://github.com/stefanzweifel/git-auto-commit-action.git synced 2026-02-02 21:27:14 +08:00
Files
commit-action/entrypoint.sh
Stefan Zweifel 68035425ff Update Path
2019-12-12 20:44:41 +01:00

23 lines
238 B
Bash
Executable File

#!/bin/bash
set -eu
source ./lib.sh
_switch_to_repository
if _git_is_dirty; then
_setup_git
_switch_to_branch
_add_files
_local_commit
_push_to_github
else
echo "Working tree clean. Nothing to commit."
fi