Skip to content

Commit 89e40fe

Browse files
committed
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.
1 parent e48f8e3 commit 89e40fe

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

.github/workflows/build.yml

+2
Original file line numberDiff line numberDiff line change
@@ -109,6 +109,8 @@ jobs:
109109
run: |
110110
git remote add upstream https://github.com/rust-bitcoin/rust-lightning
111111
git fetch upstream
112+
export GIT_COMMITTER_EMAIL="[email protected]"
113+
export GIT_COMMITTER_NAME="RL CI"
112114
git rebase upstream/main
113115
- name: For each commit, run cargo check (including in fuzz)
114116
run: ci/check-each-commit.sh upstream/main

0 commit comments

Comments
 (0)