Skip to content

Commit a3bf16f

Browse files
committed
GitService: Define a protected #_open_pull_request method
1 parent 57a715a commit a3bf16f

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

lib/modulesync/git_service/base.rb

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,12 @@ def open_pull_request(repo_path:, namespace:, title:, message:, source_branch:,
1919
noop: noop,
2020
)
2121
end
22+
23+
protected
24+
25+
def _open_pull_request(repo_path:, namespace:, title:, message:, source_branch:, target_branch:, labels:, noop:) # rubocop:disable Metrics/ParameterLists, Metrics/LineLength
26+
raise NotImplementedError
27+
end
2228
end
2329
end
2430
end

0 commit comments

Comments
 (0)