Merge pull request #347 from samuelattwood/main-source
Configuring git user in Github workflowpull/340/head^2
commit
f574aa7e4e
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue