From 03e502da5b2a1a35e6f1bd27769ad81a933772cd Mon Sep 17 00:00:00 2001 From: Christian Palazzo Date: Sun, 7 Apr 2024 22:49:38 +0200 Subject: [PATCH] fix(@ci): AG-36 fixed github username (#19) fixed git user in workflow --- .github/workflows/main.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 5c6ef4e..ffcf302 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -26,6 +26,11 @@ jobs: uses: actions/setup-node@v2 with: node-version: 20.x + + - name: Set up Git + run: | + git config --global user.email "nova.web3.collective@gmail.com" + git config --global user.name "nova collective" - name: Install dependencies run: node ci --function installDeps