From 82c9f9f46f0d958818b1207aac14eb7044ec4597 Mon Sep 17 00:00:00 2001 From: Yoganandan Pandiyan Date: Tue, 4 Nov 2025 13:19:38 +0100 Subject: [PATCH] fix: added git config for identity --- .github/workflows/rebase-prs-with-develop.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/rebase-prs-with-develop.yml b/.github/workflows/rebase-prs-with-develop.yml index 326ceb573e..918030942b 100644 --- a/.github/workflows/rebase-prs-with-develop.yml +++ b/.github/workflows/rebase-prs-with-develop.yml @@ -15,6 +15,11 @@ jobs: with: fetch-depth: 0 + - name: Configure git user + run: | + git config --global user.name "github-actions[bot]" + git config --global user.email "github-actions[bot]@users.noreply.github.com" + - name: Rebase all open non-Dependabots PRs with develop branch as base env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}