mirror of
https://github.com/lightningdevkit/rust-lightning.git
synced 2025-03-15 15:39:09 +01:00
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:
parent
e48f8e3f33
commit
89e40fe224
1 changed files with 2 additions and 0 deletions
2
.github/workflows/build.yml
vendored
2
.github/workflows/build.yml
vendored
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue