From f821793afb463322de79d382bcbd9d9ef47f4246 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20Michaud?= Date: Sat, 29 Feb 2020 12:29:55 +0100 Subject: [PATCH] [Buildkite] Change commit author of commits in gh-pages to autheliabot. (#662) --- .buildkite/steps/syncdoc.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.buildkite/steps/syncdoc.sh b/.buildkite/steps/syncdoc.sh index 6c4bd08e3..a35414e8b 100755 --- a/.buildkite/steps/syncdoc.sh +++ b/.buildkite/steps/syncdoc.sh @@ -13,9 +13,12 @@ popd COMMIT=$(git show -s --format=%h) pushd authelia +git config user.name "Authelia[bot]" +git config user.email "autheliabot@gmail.com" + git add -A git commit -m "Synchronize docs of commit: ${COMMIT}" git push popd -rm -rf authelia \ No newline at end of file +rm -rf authelia