diff options
author | EuAndreh <xablua> | 2019-05-28 20:17:08 -0300 |
---|---|---|
committer | EuAndreh <xablua> | 2019-05-28 20:17:08 -0300 |
commit | 40f8cb42f043fd7d6a58796457c33393c07d9c4b (patch) | |
tree | fd7d7a18803f424cc2b75bb5ccb6577b27e7fe92 | |
parent | Fix mixed usage of $PLAN_FILE variable (diff) | |
download | server-40f8cb42f043fd7d6a58796457c33393c07d9c4b.tar.gz server-40f8cb42f043fd7d6a58796457c33393c07d9c4b.tar.xz |
Add git config metadata to enable commiting in CI
-rwxr-xr-x | scripts/ci/provision.sh | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/scripts/ci/provision.sh b/scripts/ci/provision.sh index 2941d03..1484dcd 100755 --- a/scripts/ci/provision.sh +++ b/scripts/ci/provision.sh @@ -24,6 +24,8 @@ terraform plan -input=false -out="$PLAN_FILE_PATH" # Store on git repo pushd ../vps-state/ +git config --global user.email "ci@euandre.org" +git config --global user.name "sr.ht CI" git add "secrets/plan-files/$PLAN_FILE_NAME" git commit -m "CI: add .tfplan plan file for CI run $(git rev-parse HEAD)" git push origin master |