Class: Dependabot::PullRequestUpdater::Github
- Inherits:
-
Object
- Object
- Dependabot::PullRequestUpdater::Github
- Defined in:
- lib/dependabot/pull_request_updater/github.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.
-
#credentials ⇒ Object
readonly
Returns the value of attribute credentials.
-
#files ⇒ Object
readonly
Returns the value of attribute files.
-
#old_commit ⇒ Object
readonly
Returns the value of attribute old_commit.
-
#pull_request_number ⇒ Object
readonly
Returns the value of attribute pull_request_number.
-
#signature_key ⇒ Object
readonly
Returns the value of attribute signature_key.
-
#source ⇒ Object
readonly
Returns the value of attribute source.
Instance Method Summary collapse
-
#initialize(source:, base_commit:, old_commit:, files:, credentials:, pull_request_number:, author_details: nil, signature_key: nil) ⇒ Github
constructor
A new instance of Github.
- #update ⇒ Object
Constructor Details
#initialize(source:, base_commit:, old_commit:, files:, credentials:, pull_request_number:, author_details: nil, signature_key: nil) ⇒ Github
Returns a new instance of Github.
14 15 16 17 18 19 20 21 22 23 24 25 |
# File 'lib/dependabot/pull_request_updater/github.rb', line 14 def initialize(source:, base_commit:, old_commit:, files:, credentials:, pull_request_number:, author_details: nil, signature_key: nil) @source = source @base_commit = base_commit @old_commit = old_commit @files = files @credentials = credentials @pull_request_number = pull_request_number @author_details = @signature_key = signature_key end |
Instance Attribute Details
#author_details ⇒ Object (readonly)
Returns the value of attribute author_details.
11 12 13 |
# File 'lib/dependabot/pull_request_updater/github.rb', line 11 def @author_details end |
#base_commit ⇒ Object (readonly)
Returns the value of attribute base_commit.
11 12 13 |
# File 'lib/dependabot/pull_request_updater/github.rb', line 11 def base_commit @base_commit end |
#credentials ⇒ Object (readonly)
Returns the value of attribute credentials.
11 12 13 |
# File 'lib/dependabot/pull_request_updater/github.rb', line 11 def credentials @credentials end |
#files ⇒ Object (readonly)
Returns the value of attribute files.
11 12 13 |
# File 'lib/dependabot/pull_request_updater/github.rb', line 11 def files @files end |
#old_commit ⇒ Object (readonly)
Returns the value of attribute old_commit.
11 12 13 |
# File 'lib/dependabot/pull_request_updater/github.rb', line 11 def old_commit @old_commit end |
#pull_request_number ⇒ Object (readonly)
Returns the value of attribute pull_request_number.
11 12 13 |
# File 'lib/dependabot/pull_request_updater/github.rb', line 11 def pull_request_number @pull_request_number end |
#signature_key ⇒ Object (readonly)
Returns the value of attribute signature_key.
11 12 13 |
# File 'lib/dependabot/pull_request_updater/github.rb', line 11 def signature_key @signature_key end |
#source ⇒ Object (readonly)
Returns the value of attribute source.
11 12 13 |
# File 'lib/dependabot/pull_request_updater/github.rb', line 11 def source @source end |
Instance Method Details
#update ⇒ Object
27 28 29 30 31 32 33 34 35 |
# File 'lib/dependabot/pull_request_updater/github.rb', line 27 def update return unless pull_request_exists? return unless branch_exists?(pull_request.head.ref) commit = create_commit branch = update_branch(commit) update_pull_request_target_branch branch end |