Skip to content

Set GitHubProjectColumn

Howard Wolosky edited this page Oct 5, 2020 · 2 revisions

Set-GitHubProjectColumn

SYNOPSIS

Modify a GitHub Project Column.

SYNTAX

Set-GitHubProjectColumn [-Column] <Int64> [-ColumnName] <String> [-PassThru] [[-AccessToken] <String>]
[-WhatIf] [-Confirm] [<CommonParameters>]

DESCRIPTION

Modify a GitHub Project Column.

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

EXAMPLES

EXAMPLE 1

Set-GitHubProjectColumn -Column 999999 -ColumnName NewColumnName

Set the project column name to 'NewColumnName' with column with ID 999999.

PARAMETERS

-AccessToken

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.

Type: System.StringParameter Sets: (All)Aliases:
Required: FalsePosition: 3Default value: NoneAccept pipeline input: FalseAccept wildcard characters: False

-Column

ID of the column to modify.

Type: System.Int64Parameter Sets: (All)Aliases: ColumnIdRequired: TruePosition: 1Default value: 0Accept pipeline input: True (ByPropertyName)Accept wildcard characters: False

-ColumnName

{{ Fill ColumnName Description }}

Type: System.StringParameter Sets: (All)Aliases: NameRequired: TruePosition: 2Default value: NoneAccept pipeline input: FalseAccept wildcard characters: False

-PassThru

Returns the updated Project Column. By default, this cmdlet does not generate any output. You can use "Set-GitHubConfiguration -DefaultPassThru" to control the default behavior of this switch.

Type: System.Management.Automation.SwitchParameterParameter Sets: (All)Aliases:
Required: FalsePosition: NamedDefault value: FalseAccept pipeline input: FalseAccept wildcard characters: False

-Confirm

Prompts you for confirmation before running the cmdlet.

Type: System.Management.Automation.SwitchParameterParameter Sets: (All)Aliases: cfRequired: FalsePosition: NamedDefault value: NoneAccept pipeline input: FalseAccept wildcard characters: False

-WhatIf

Shows what would happen if the cmdlet runs. The cmdlet is not run.

Type: System.Management.Automation.SwitchParameterParameter Sets: (All)Aliases: wiRequired: FalsePosition: NamedDefault value: NoneAccept pipeline input: FalseAccept wildcard characters: False

CommonParameters

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

INPUTS

GitHub.ProjectCard

GitHub.ProjectColumn

OUTPUTS

GitHub.ProjectColumn

NOTES

RELATED LINKS

PowerShellForGitHub

Docs

PowerShellForGitHub

Functions

Clone this wiki locally