From 997321639381c6e8810a97e7a34aae3fb39e7b23 Mon Sep 17 00:00:00 2001 From: Franck Royer Date: Fri, 23 Apr 2021 15:52:02 +1000 Subject: [PATCH] Set git identity to auto-deploy pages from main --- .github/workflows/deploy-gh-pages.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/deploy-gh-pages.yml b/.github/workflows/deploy-gh-pages.yml index 5760c16043..245458c0cb 100644 --- a/.github/workflows/deploy-gh-pages.yml +++ b/.github/workflows/deploy-gh-pages.yml @@ -13,6 +13,11 @@ jobs: - name: Checkout code uses: actions/checkout@v2 + - name: Set git author identity + run: | + git config user.name "GitHub Action On js-waku Repo" + git config user.email "franck+ghpages@status.im" + - name: Install NodeJS uses: actions/setup-node@v2 with: