Class: Dependabot::PullRequestUpdater::Azure

Inherits:
Object
  • Object
show all
Defined in:
lib/dependabot/pull_request_updater/azure.rb

Defined Under Namespace

Classes: PullRequestUpdateFailed

Constant Summary collapse

OBJECT_ID_FOR_BRANCH_DELETE =
"0000000000000000000000000000000000000000"

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(source:, files:, base_commit:, old_commit:, credentials:, pull_request_number:, author_details: nil) ⇒ Azure

Returns a new instance of Azure.



16
17
18
19
20
21
22
23
24
25
# File 'lib/dependabot/pull_request_updater/azure.rb', line 16

def initialize(source:, files:, base_commit:, old_commit:,
               credentials:, pull_request_number:, author_details: nil)
  @source = source
  @files = files
  @base_commit = base_commit
  @old_commit = old_commit
  @credentials = credentials
  @pull_request_number = pull_request_number
  @author_details = author_details
end

Instance Attribute Details

#author_detailsObject (readonly)

Returns the value of attribute author_details.



13
14
15
# File 'lib/dependabot/pull_request_updater/azure.rb', line 13

def author_details
  @author_details
end

#base_commitObject (readonly)

Returns the value of attribute base_commit.



13
14
15
# File 'lib/dependabot/pull_request_updater/azure.rb', line 13

def base_commit
  @base_commit
end

#credentialsObject (readonly)

Returns the value of attribute credentials.



13
14
15
# File 'lib/dependabot/pull_request_updater/azure.rb', line 13

def credentials
  @credentials
end

#filesObject (readonly)

Returns the value of attribute files.



13
14
15
# File 'lib/dependabot/pull_request_updater/azure.rb', line 13

def files
  @files
end

#old_commitObject (readonly)

Returns the value of attribute old_commit.



13
14
15
# File 'lib/dependabot/pull_request_updater/azure.rb', line 13

def old_commit
  @old_commit
end

#pull_request_numberObject (readonly)

Returns the value of attribute pull_request_number.



13
14
15
# File 'lib/dependabot/pull_request_updater/azure.rb', line 13

def pull_request_number
  @pull_request_number
end

#sourceObject (readonly)

Returns the value of attribute source.



13
14
15
# File 'lib/dependabot/pull_request_updater/azure.rb', line 13

def source
  @source
end

Instance Method Details

#updateObject



27
28
29
30
31
# File 'lib/dependabot/pull_request_updater/azure.rb', line 27

def update
  return unless pull_request_exists? && source_branch_exists?

  update_source_branch
end