Posh-GitHub icon indicating copy to clipboard operation
Posh-GitHub copied to clipboard

Merge-GitHubPullRequest

Open Iristyle opened this issue 12 years ago • 1 comments

Another one loosely modeled after New-GitHubPullRequest

function Merge-GitHubPullRequest
{
  [CmdletBinding()]
  param(
    [Parameter(Mandatory = $false)]
    [string]
    $Owner = $null,

    [Parameter(Mandatory = $false)]
    [string]
    $Repository = $null,

    [Parameter(Mandatory = $true)]
    [int]
    $Number
  )
}

Iristyle avatar Nov 09 '12 18:11 Iristyle

I have transposed John Resig's pulley into powershell.

I'd like to have this be a part of Posh-GitHub and invite your guidance to do that, perhaps through a pull request.

davious avatar Aug 26 '13 03:08 davious