Skip to content

Commit

Permalink
Print out description and commit message alongside title when skippin…
Browse files Browse the repository at this point in the history
…g creating/updating
  • Loading branch information
mburumaxwell committed Feb 24, 2023
1 parent 9d82a74 commit 7b7bb77
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion updater/bin/update-script.rb
Original file line number Diff line number Diff line change
Expand Up @@ -671,7 +671,12 @@ def peer_dependency_should_update_instead?(dependency_name, updated_deps, files,
commit_message_options: $update_config.commit_message_options.to_h,
github_redirection_service: Dependabot::PullRequestCreator::DEFAULT_GITHUB_REDIRECTION_SERVICE
).message
puts "Skipping creating/updating Pull Request. Title: #{msg.pr_name}"
puts "Skipping creating/updating Pull Request."
puts "Title: #{msg.pr_name}"
puts "Description:\r\n#{msg.pr_message}\r\n"
puts "Commit:\r\n#{msg.commit_message}\r\n"
puts "------------------------"
puts ""
pull_requests_count += 1
next
end
Expand Down

0 comments on commit 7b7bb77

Please sign in to comment.