From 46d10fa236aa5f0ea1fb74832a98a61ad54f256e Mon Sep 17 00:00:00 2001 From: Edouard Demotes Date: Sun, 19 Nov 2023 23:06:56 -0500 Subject: [PATCH] ci: configure git with bot info (#3) --- .github/workflows/release-and-publish.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/release-and-publish.yml b/.github/workflows/release-and-publish.yml index a8da92cf..bae84cc2 100644 --- a/.github/workflows/release-and-publish.yml +++ b/.github/workflows/release-and-publish.yml @@ -12,6 +12,10 @@ jobs: - uses: actions/checkout@v2 with: token: ${{ secrets.GH_TOKEN }} + - name: Configure Git + run: | + git config --global user.name "${{ secrets.CI_BOT_NAME }}" + git config --global user.email "${{ secrets.CI_BOT_EMAIL }}" - name: Use Node.js 18.x uses: actions/setup-node@v2 with: