Skip to content

Commit

Permalink
GitService: Define a protected #_open_pull_request method
Browse files Browse the repository at this point in the history
  • Loading branch information
neomilium committed Oct 6, 2021
1 parent 57a715a commit a3bf16f
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions lib/modulesync/git_service/base.rb
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,12 @@ def open_pull_request(repo_path:, namespace:, title:, message:, source_branch:,
noop: noop,
)
end

protected

def _open_pull_request(repo_path:, namespace:, title:, message:, source_branch:, target_branch:, labels:, noop:) # rubocop:disable Metrics/ParameterLists, Metrics/LineLength
raise NotImplementedError
end
end
end
end

0 comments on commit a3bf16f

Please sign in to comment.