Posh-GitHub
Posh-GitHub copied to clipboard
Merge-GitHubPullRequest
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
)
}
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.