mirror of
https://github.com/stefanzweifel/git-auto-commit-action.git
synced 2024-11-06 02:08:05 +00:00
23 lines
237 B
Bash
Executable File
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
|