Skip to content

Commit

Permalink
Fix character length limit given new changes (#724)
Browse files Browse the repository at this point in the history
Fix the character length limit error by setting it in the `MessageBuilder`.

This reacts to changes made in dependabot/dependabot-core#7487
  • Loading branch information
mburumaxwell authored Aug 1, 2023
1 parent 3f11db0 commit b8d7ea2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
1 change: 0 additions & 1 deletion updater/Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ source "https://rubygems.org"
# Hence adding the branch.

# gem "dependabot-omnibus", github: "dependabot/dependabot-core", branch: "main"

gem "dependabot-omnibus", "~>0.224.0"

group :test do
Expand Down
5 changes: 4 additions & 1 deletion updater/bin/update-script.rb
Original file line number Diff line number Diff line change
Expand Up @@ -694,7 +694,10 @@ def show_diff(original_file, updated_file)
# pr_message_header: ,
# pr_message_footer: ,
# vulnerabilities_fixed: ,
github_redirection_service: Dependabot::PullRequestCreator::DEFAULT_GITHUB_REDIRECTION_SERVICE
# dependency_group: ,
github_redirection_service: Dependabot::PullRequestCreator::DEFAULT_GITHUB_REDIRECTION_SERVICE,
pr_message_max_length: Dependabot::Azure::PR_DESCRIPTION_MAX_LENGTH,
pr_message_encoding: Dependabot::Azure::PR_DESCRIPTION_ENCODING
)

# Skip creating/updating PR
Expand Down

0 comments on commit b8d7ea2

Please sign in to comment.