Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions common/spec/spec_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,9 @@
end
end

Dependabot::SharedHelpers.run_shell_command("git config --global user.email no-reply@github.com")
Dependabot::SharedHelpers.run_shell_command("git config --global user.name dependabot-ci")

RSpec.configure do |config|
config.color = true
config.order = :rand
Expand Down Expand Up @@ -117,8 +120,6 @@ def build_tmp_repo(project, path: "projects")
FileUtils.cp_r("#{project_path}/.", tmp_repo_path)

Dir.chdir(tmp_repo_path) do
Dependabot::SharedHelpers.run_shell_command("git config --global user.email no-reply@github.com")
Dependabot::SharedHelpers.run_shell_command("git config --global user.name dependabot-ci")
Dependabot::SharedHelpers.run_shell_command("git init")
Dependabot::SharedHelpers.run_shell_command("git add --all")
Dependabot::SharedHelpers.run_shell_command("git commit -m init")
Expand Down