use bot user to push some of the doc content

This commit is contained in:
Kjeld Schouten-Lebbing
2021-03-12 21:19:26 +01:00
committed by kjeld Schouten-Lebbing
parent aedb517b12
commit 8026b4323d
+4 -4
View File
@@ -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