piotrmurach/github_cli

View on GitHub
lib/github_cli/apis/merging.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

require_relative "../api"

module GithubCLI
  class Merging
    extend API

    def self.merge(user, repo, params, options)
      output options do
        github_api(options).repos.merging.merge(user, repo, params)
      end
    end
  end # Merging
end # GithubCLI