From 4cf979160492b443ad90ab0c5c9431c79e3c41be Mon Sep 17 00:00:00 2001 From: tituspijean Date: Sat, 4 Sep 2021 00:42:51 +0200 Subject: [PATCH] Fix author and committer name for README auto-update --- tools/README-generator/webhook.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/README-generator/webhook.py b/tools/README-generator/webhook.py index a9165e6..a2183df 100755 --- a/tools/README-generator/webhook.py +++ b/tools/README-generator/webhook.py @@ -20,9 +20,9 @@ token = open("token").read().strip() my_env = os.environ.copy() my_env["GIT_TERMINAL_PROMPT"] = "0" -my_env["GIT_AUTHOR_NAME"] = "Yunohost-Bot" +my_env["GIT_AUTHOR_NAME"] = "yunohost-bot" my_env["GIT_AUTHOR_EMAIL"] = "yunohost@yunohost.org" -my_env["GIT_COMMITTER_NAME"] = "Yunohost-Bot" +my_env["GIT_COMMITTER_NAME"] = "yunohost-bot" my_env["GIT_COMMITTER_EMAIL"] = "yunohost@yunohost.org"