From 8026b4323dbc4dca220e6cd8d4931dc6c4c9a8b1 Mon Sep 17 00:00:00 2001 From: Kjeld Schouten-Lebbing Date: Fri, 12 Mar 2021 21:19:26 +0100 Subject: [PATCH] use bot user to push some of the doc content --- .github/workflows/wiki-create-docs.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/wiki-create-docs.yaml b/.github/workflows/wiki-create-docs.yaml index d72a491b21c..b872cd5c029 100644 --- a/.github/workflows/wiki-create-docs.yaml +++ b/.github/workflows/wiki-create-docs.yaml @@ -78,8 +78,8 @@ jobs: - name: Commit and push updated website run: | cd website - git config user.name "$GITHUB_ACTOR" - git config user.email "$GITHUB_ACTOR@users.noreply.github.com" + git config user.name "TrueCharts-Bot" + git config user.email "bot@truecharts.org" git add --all git commit -sm "Publish general website updates" || exit 0 git push @@ -88,8 +88,8 @@ jobs: - name: Commit and push updated charts run: | cd master - git config user.name "$GITHUB_ACTOR" - git config user.email "$GITHUB_ACTOR@users.noreply.github.com" + git config user.name "TrueCharts-Bot" + git config user.email "bot@truecharts.org" git add --all git commit -sm "Publish docs updates" || exit 0 git push