Skip to content

Commit 919dba0

Browse files
authored
Merge pull request #404 from EngineeringKiosk/andygrunwald/fix-rebase-identity-in-auto-commit
ci: Configure git identity before rebase in push retry
2 parents 7a223e3 + ca81949 commit 919dba0

1 file changed

Lines changed: 7 additions & 0 deletions

File tree

.github/workflows/podcast-data.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,13 @@ jobs:
6060
commit_author: "GitHub Actions Bot <actions@github.com>"
6161
skip_push: true
6262

63+
- name: Configure git identity for rebase
64+
if: steps.auto-commit.outputs.changes_detected == 'true'
65+
working-directory: ${{ github.workspace }}
66+
run: |
67+
git config user.name "GitHub Actions Bot"
68+
git config user.email "actions@github.com"
69+
6370
- name: Push changes with retry
6471
if: steps.auto-commit.outputs.changes_detected == 'true'
6572
working-directory: ${{ github.workspace }}

0 commit comments

Comments
 (0)