From 7b7bb770858f76a9c7847cd7d6bdebb9b8adae5e Mon Sep 17 00:00:00 2001 From: mburumaxwell Date: Fri, 24 Feb 2023 14:52:08 +0300 Subject: [PATCH] Print out description and commit message alongside title when skipping creating/updating --- updater/bin/update-script.rb | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/updater/bin/update-script.rb b/updater/bin/update-script.rb index f9404ccc..6639b130 100644 --- a/updater/bin/update-script.rb +++ b/updater/bin/update-script.rb @@ -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