Skip to content

Commit dd0fb77

Browse files
thescouser89akridl
authored andcommitted
Initialize user name and email for test
For Github actions which start a fresh new container, those values are not configured and we then fail to push any commit. We therefore need to configure it beforehand.
1 parent 739c5d7 commit dd0fb77

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

adjuster/src/test/resources/scripts/configure_upstream_and_downstream.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,8 @@ function check_binaries_are_installed() {
9797

9898
function configure_git() {
9999
git config --global init.defaultBranch main
100+
git config --global user.email "[email protected]"
101+
git config --global user.name "Name Surname"
100102
}
101103

102104
function configure_upstream() {

0 commit comments

Comments
 (0)