Skip to content

Commit 1fdd5ef

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 1fdd5ef

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ jobs:
109109
run: |
110110
git remote add upstream https://github.com/rust-bitcoin/rust-lightning
111111
git fetch upstream
112-
git rebase upstream/main
112+
GIT_AUTHOR_EMAIL="[email protected]" GIT_AUTHOR_NAME="RL CI" git rebase upstream/main
113113
- name: For each commit, run cargo check (including in fuzz)
114114
run: ci/check-each-commit.sh upstream/main
115115

0 commit comments

Comments
 (0)