Configuring git user is workflow to permit rebase

pull/346/head
Samuel Attwood 2022-02-18 18:43:26 -05:00
parent 31ddc4889f
commit 6a6dae076d
1 changed files with 5 additions and 0 deletions

View File

@ -19,6 +19,11 @@ jobs:
- name: Fetch main-source
run: git fetch origin main-source
- name: Set git user for rebase
run: |
git config user.name "$(git log -n 1 --pretty=format:%an)"
git config user.email "$(git log -n 1 --pretty=format:%ae)"
- name: Rebase to main-source
run: git rebase origin/main-source