< Back

New-GitHubIssue

Sat Jan 18, 2020 9:38 pm

NAME New-GitHubIssue



SYNOPSIS

Create a new Issue on GitHub.





SYNTAX

New-GitHubIssue [-OwnerName <String>] [-RepositoryName <String>] -Title <String> [-Body <String>] [-Assignee

<String[]>] [-Milestone <Int64>] [-Label <String[]>] [-MediaType <String>] [-AccessToken <String>] [-NoStatus]

[-WhatIf] [-Confirm] [<CommonParameters>]



New-GitHubIssue -Uri <String> -Title <String> [-Body <String>] [-Assignee <String[]>] [-Milestone <Int64>] [-Label

<String[]>] [-MediaType <String>] [-AccessToken <String>] [-NoStatus] [-WhatIf] [-Confirm] [<CommonParameters>]





DESCRIPTION

Create a new Issue on GitHub.



The Git repo for this module can be found here: http://aka.ms/PowerShellForGitHub





PARAMETERS

-OwnerName <String>

Owner of the repository.

If not supplied here, the DefaultOwnerName configuration property value will be used.



Required? false

Position? named

Default value

Accept pipeline input? false

Accept wildcard characters? false



-RepositoryName <String>

Name of the repository.

If not supplied here, the DefaultRepositoryName configuration property value will be used.



Required? false

Position? named

Default value

Accept pipeline input? false

Accept wildcard characters? false



-Uri <String>

Uri for the repository.

The OwnerName and RepositoryName will be extracted from here instead of needing to provide

them individually.



Required? true

Position? named

Default value

Accept pipeline input? false

Accept wildcard characters? false



-Title <String>

The title of the issue



Required? true

Position? named

Default value

Accept pipeline input? false

Accept wildcard characters? false



-Body <String>

The contents of the issue



Required? false

Position? named

Default value

Accept pipeline input? false

Accept wildcard characters? false



-Assignee <String[]>

Login(s) for Users to assign to the issue.



Required? false

Position? named

Default value

Accept pipeline input? false

Accept wildcard characters? false



-Milestone <Int64>

The number of the mileston to associate this issue with.



Required? false

Position? named

Default value 0

Accept pipeline input? false

Accept wildcard characters? false



-Label <String[]>

Label(s) to associate with this issue.



Required? false

Position? named

Default value

Accept pipeline input? false

Accept wildcard characters? false



-MediaType <String>

The format in which the API will return the body of the issue.



Raw - Return the raw markdown body. Response will include body. This is the default if you do not pass any

specific media type.

Text - Return a text only representation of the markdown body. Response will include body_text.

Html - Return HTML rendered from the body's markdown. Response will include body_html.

Full - Return raw, text and HTML representations. Response will include body, body_text, and body_html.



Required? false

Position? named

Default value Raw

Accept pipeline input? false

Accept wildcard characters? false



-AccessToken <String>

If provided, this will be used as the AccessToken for authentication with the

REST Api. Otherwise, will attempt to use the configured value or will run unauthenticated.



Required? false

Position? named

Default value

Accept pipeline input? false

Accept wildcard characters? false



-NoStatus [<SwitchParameter>]

If this switch is specified, long-running commands will run on the main thread

with no commandline status update. When not specified, those commands run in

the background, enabling the command prompt to provide status information.

If not supplied here, the DefaultNoStatus configuration property value will be used.



Required? false

Position? named

Default value False

Accept pipeline input? false

Accept wildcard characters? false



-WhatIf [<SwitchParameter>]



Required? false

Position? named

Default value

Accept pipeline input? false

Accept wildcard characters? false



-Confirm [<SwitchParameter>]



Required? false

Position? named

Default value

Accept pipeline input? false

Accept wildcard characters? false



<CommonParameters>

This cmdlet supports the common parameters: Verbose, Debug,

ErrorAction, ErrorVariable, WarningAction, WarningVariable,

OutBuffer, PipelineVariable, and OutVariable. For more information, see

about_CommonParameters (https:/go.microsoft.com/fwlink/?LinkID=113216).



INPUTS



OUTPUTS



-------------------------- EXAMPLE 1 --------------------------



PS C:\\>New-GitHubIssue -OwnerName Microsoft -RepositoryName PowerShellForGitHub -Title 'Test Issue'















RELATED LINKS