Don't let CI fail to check commits b/c git isn't configured in CI

This fixes #733 by just setting a dummy git name/email before
calling `git rebase` in CI.
This commit is contained in:
Matt Corallo 2020-10-02 16:32:32 -04:00
parent e48f8e3f33
commit 89e40fe224

View file

@ -109,6 +109,8 @@ jobs:
run: |
git remote add upstream https://github.com/rust-bitcoin/rust-lightning
git fetch upstream
export GIT_COMMITTER_EMAIL="rl-ci@example.com"
export GIT_COMMITTER_NAME="RL CI"
git rebase upstream/main
- name: For each commit, run cargo check (including in fuzz)
run: ci/check-each-commit.sh upstream/main