1
0
mirror of https://github.com/stefanzweifel/git-auto-commit-action.git synced 2026-02-03 04:47:15 +08:00
Files
commit-action/entrypoint.sh
2019-12-12 20:46:16 +01:00

23 lines
237 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