Class: DependencyBot::Gitlab::MergeRequestCreator
- Inherits:
-
Object
- Object
- DependencyBot::Gitlab::MergeRequestCreator
- Defined in:
- lib/dependency_bot/gitlab/merge_request_creator.rb
Overview
This class is responsible for creating a merge request in GitLab using the GitLab API. It uses the ‘gitlab` gem to interact with the GitLab API. The merge request is created from a branch that has been updated to fix security vulnerabilities. The project ID and target branch are fetched from environment variables.
Class Method Summary collapse
Class Method Details
.create(fixer) ⇒ Object
12 13 14 15 16 17 18 19 20 21 22 23 |
# File 'lib/dependency_bot/gitlab/merge_request_creator.rb', line 12 def self.create(fixer) project_id = ENV.fetch("GITLAB_PROJECT_ID", nil) target_branch = ENV.fetch("GITLAB_MAIN_BRANCH", nil) ::Gitlab.create_merge_request( project_id, fixer., source_branch: fixer.branch_name, target_branch: target_branch, description: "Update dependency to fix security vulnerabilities" ) end |