From b02dc78b040b78b9b5f023de1f99fef9c05c68d2 Mon Sep 17 00:00:00 2001 From: Maxwell G Date: Thu, 19 Oct 2023 12:36:33 -0500 Subject: [PATCH] get_bot_user: use correct username in committer email (#664) There is a small error in the Ansible Documentation Bot's committer email used by the pip-compile jobs. There needs to be a `[bot]` suffix in the username of a bot. --- hacking/get_bot_user.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hacking/get_bot_user.sh b/hacking/get_bot_user.sh index 3052958deb..0a09d3b370 100755 --- a/hacking/get_bot_user.sh +++ b/hacking/get_bot_user.sh @@ -11,4 +11,4 @@ user_id="$(curl -sS "${path}" | jq -r .id)" GIT="${GIT:-git}" ${GIT} config user.name "${name}" -${GIT} config user.email "${user_id}+${bot}@users.noreply.github.com" +${GIT} config user.email "${user_id}+${bot}[bot]@users.noreply.github.com"