Class: Dependabot::PullRequestCreator::Bitbucket
- Inherits:
-
Object
- Object
- Dependabot::PullRequestCreator::Bitbucket
- Defined in:
- lib/dependabot/pull_request_creator/bitbucket.rb
Instance Attribute Summary collapse
-
#author_details ⇒ Object
readonly
Returns the value of attribute author_details.
-
#base_commit ⇒ Object
readonly
Returns the value of attribute base_commit.
-
#branch_name ⇒ Object
readonly
Returns the value of attribute branch_name.
-
#commit_message ⇒ Object
readonly
Returns the value of attribute commit_message.
-
#credentials ⇒ Object
readonly
Returns the value of attribute credentials.
-
#files ⇒ Object
readonly
Returns the value of attribute files.
-
#labeler ⇒ Object
readonly
Returns the value of attribute labeler.
-
#pr_description ⇒ Object
readonly
Returns the value of attribute pr_description.
-
#pr_name ⇒ Object
readonly
Returns the value of attribute pr_name.
-
#source ⇒ Object
readonly
Returns the value of attribute source.
-
#work_item ⇒ Object
readonly
Returns the value of attribute work_item.
Instance Method Summary collapse
- #create ⇒ Object
-
#initialize(source:, branch_name:, base_commit:, credentials:, files:, commit_message:, pr_description:, pr_name:, author_details:, labeler: nil, work_item: nil) ⇒ Bitbucket
constructor
A new instance of Bitbucket.
Constructor Details
#initialize(source:, branch_name:, base_commit:, credentials:, files:, commit_message:, pr_description:, pr_name:, author_details:, labeler: nil, work_item: nil) ⇒ Bitbucket
Returns a new instance of Bitbucket.
13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 |
# File 'lib/dependabot/pull_request_creator/bitbucket.rb', line 13 def initialize(source:, branch_name:, base_commit:, credentials:, files:, commit_message:, pr_description:, pr_name:, author_details:, labeler: nil, work_item: nil) @source = source @branch_name = branch_name @base_commit = base_commit @credentials = credentials @files = files @commit_message = @pr_description = pr_description @pr_name = pr_name @author_details = @labeler = labeler @work_item = work_item end |
Instance Attribute Details
#author_details ⇒ Object (readonly)
Returns the value of attribute author_details.
9 10 11 |
# File 'lib/dependabot/pull_request_creator/bitbucket.rb', line 9 def @author_details end |
#base_commit ⇒ Object (readonly)
Returns the value of attribute base_commit.
9 10 11 |
# File 'lib/dependabot/pull_request_creator/bitbucket.rb', line 9 def base_commit @base_commit end |
#branch_name ⇒ Object (readonly)
Returns the value of attribute branch_name.
9 10 11 |
# File 'lib/dependabot/pull_request_creator/bitbucket.rb', line 9 def branch_name @branch_name end |
#commit_message ⇒ Object (readonly)
Returns the value of attribute commit_message.
9 10 11 |
# File 'lib/dependabot/pull_request_creator/bitbucket.rb', line 9 def @commit_message end |
#credentials ⇒ Object (readonly)
Returns the value of attribute credentials.
9 10 11 |
# File 'lib/dependabot/pull_request_creator/bitbucket.rb', line 9 def credentials @credentials end |
#files ⇒ Object (readonly)
Returns the value of attribute files.
9 10 11 |
# File 'lib/dependabot/pull_request_creator/bitbucket.rb', line 9 def files @files end |
#labeler ⇒ Object (readonly)
Returns the value of attribute labeler.
9 10 11 |
# File 'lib/dependabot/pull_request_creator/bitbucket.rb', line 9 def labeler @labeler end |
#pr_description ⇒ Object (readonly)
Returns the value of attribute pr_description.
9 10 11 |
# File 'lib/dependabot/pull_request_creator/bitbucket.rb', line 9 def pr_description @pr_description end |
#pr_name ⇒ Object (readonly)
Returns the value of attribute pr_name.
9 10 11 |
# File 'lib/dependabot/pull_request_creator/bitbucket.rb', line 9 def pr_name @pr_name end |
#source ⇒ Object (readonly)
Returns the value of attribute source.
9 10 11 |
# File 'lib/dependabot/pull_request_creator/bitbucket.rb', line 9 def source @source end |
#work_item ⇒ Object (readonly)
Returns the value of attribute work_item.
9 10 11 |
# File 'lib/dependabot/pull_request_creator/bitbucket.rb', line 9 def work_item @work_item end |
Instance Method Details
#create ⇒ Object
29 30 31 32 33 34 35 36 37 38 |
# File 'lib/dependabot/pull_request_creator/bitbucket.rb', line 29 def create return if branch_exists? && pull_request_exists? # FIXME: Copied from Azure, but not verified whether this is true # For Bitbucket we create or update a branch in the same request as creating # a commit (so we don't need create or update branch logic here) create_commit create_pull_request end |