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