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 }}