Skip to content

Commit

Permalink
Convert milestone to int in ruby script (#1001)
Browse files Browse the repository at this point in the history
  • Loading branch information
mburumaxwell authored Feb 19, 2024
1 parent 3d51bcf commit 9ca6ede
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion updater/bin/update_script.rb
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
reviewers: nil, # nil instead of empty array to avoid API rejection
assignees: nil, # nil instead of empty array to avoid API rejection
branch_name_separator: ENV["DEPENDABOT_BRANCH_NAME_SEPARATOR"] || "/", # Separator used for created branches.
milestone: ENV["DEPENDABOT_MILESTONE"] || nil, # Get the work item to attach
milestone: ENV["DEPENDABOT_MILESTONE"].to_i || nil, # Get the work item to attach
vendor_dependencies: ENV["DEPENDABOT_VENDOR"] == "true",
repo_contents_path: ENV["DEPENDABOT_REPO_CONTENTS_PATH"] || nil,
updater_options: {},
Expand Down

0 comments on commit 9ca6ede

Please sign in to comment.