Skip to content

Commit

Permalink
fix(gitlab): pr creator missing default for target_project_id (#8985)
Browse files Browse the repository at this point in the history
  • Loading branch information
THETCR authored Feb 7, 2024
1 parent a054d2a commit 293b93d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion common/lib/dependabot/pull_request_creator.rb
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,7 @@ def gitlab_creator
approvers: reviewers,
assignees: assignees,
milestone: milestone,
target_project_id: provider_metadata&.fetch(:target_project_id)
target_project_id: provider_metadata&.fetch(:target_project_id, nil)
)
end

Expand Down

0 comments on commit 293b93d

Please sign in to comment.