We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b44a572 commit f6a9895Copy full SHA for f6a9895
.github/workflows/node.js.yml
@@ -84,10 +84,13 @@ jobs:
84
git remote add forkUpstream https://github.com/$REPO_NAME # URL of the fork
85
git fetch forkUpstream # Fetch fork
86
87
+ # Because `git merge` makes a commit, we need to establish an identity to avoid 'Committer identity unknown' error
88
- name: Merge in target branch to avoid false negatives.
89
env:
90
TARGET_BRANCH: ${{ github.event.pull_request.base.ref }}
91
run: |
92
+ git config --global user.email "[email protected]"
93
+ git config --global user.name "ci"
94
git merge origin/$TARGET_BRANCH
95
96
- name: Compute git diff
0 commit comments