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

Powershell cmdlets that expose the GitHub API

Results 32 Posh-GitHub issues
Sort by recently updated
recently updated
newest added

I am interested in authoring a DSC resource that would leverage this module, but I would prefer all dependencies be available in the gallery so they can be automatically resolved...

Hi, There is a repo [PSGithub](https://github.com/pcgeek86/PSGitHub) That has most of your functionality and also has some function that you don't have. Is it possible that you put a link to...

Now that PowerShell is supported on Mac and Linux, can this wonderful library be made to work on them?

It would be nice to have a get-GithubIssueMilestones command, to retrieve all miles stones in a given repository.

It looks like the issues code does not support pagination, which means by default the api will only return 30 items. https://github.com/Iristyle/Posh-GitHub/blob/master/Posh-Github.psm1#L170 The github api does provide the links header...

I assume this happens because 2FA is turned on, but don't know based on just the output here. ``` shell New-GitHubOAuthToken -username petemounce -Password '' -verbose VERBOSE: POST https://api.github.com/authorizations with...

Maybe it could use either - [`securestring` parameter type](https://serverfault.com/questions/406933/powershell-parameters)? - `get-credentials`? so that my credentials don't get output as cleartext when I try to set up a new OAuth token?

This PR implements the GitHub API v3 Statuses as described in https://developer.github.com/v3/repos/statuses/ #### Examples Set status to success for the `default` Context of the `master` branch ``` powershell Set-GitHubStatus Iristyle...

- Fix: catch not show error `catch{ write-host $Error[0]}` - not works replace `$Error` to `$_` http://www.vexasoft.com/blogs/powershell/7255220-powershell-tutorial-try-catch-finally-and-error-handling-in-powershell - Fix: HEAD could not contain '_' - Fix: Author could not contain...

https://developer.github.com/v3/activity/watching/