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.
This commit is contained in:
Maxwell G
2023-10-19 12:36:33 -05:00
committed by GitHub
parent a986664e99
commit b02dc78b04

View File

@@ -11,4 +11,4 @@ user_id="$(curl -sS "${path}" | jq -r .id)"
GIT="${GIT:-git}" GIT="${GIT:-git}"
${GIT} config user.name "${name}" ${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"