From: Azat Khuzhin Date: Tue, 28 Jul 2020 08:02:15 +0000 (+0300) Subject: Change user.name/user.email to robot for deploy via github actions X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=bfbbc882969a173459ac45f423b4fc1eebf0ac96;p=libevent Change user.name/user.email to robot for deploy via github actions --- diff --git a/.github/workflows/abi.yml b/.github/workflows/abi.yml index 87b45c23..28ff4221 100644 --- a/.github/workflows/abi.yml +++ b/.github/workflows/abi.yml @@ -59,8 +59,8 @@ jobs: cd /tmp/le-abi-root/work/abi-check git init - git config --local user.name $user_name - git config --local user.email $user_email + git config --local user.name "Libevent Github Robot" + git config --local user.email "robot@libevent.org" git add -f . git commit -m "Update ABI/API backward compatibility report (libevent/libevent@$short_commit_id)" git push -f git@github.com:$owner_name/abi master diff --git a/.github/workflows/doxygen.yml b/.github/workflows/doxygen.yml index 09c92534..6abd3c1a 100644 --- a/.github/workflows/doxygen.yml +++ b/.github/workflows/doxygen.yml @@ -46,8 +46,8 @@ jobs: cd ./build/doxygen/html git init - git config --local user.name $user_name - git config --local user.email $user_email + git config --local user.name "Libevent Github Robot" + git config --local user.email "robot@libevent.org" git add -f . git commit -m "Update documentation (libevent/libevent@$short_commit_id)" git push -f git@github.com:$owner_name/doc master