-
Notifications
You must be signed in to change notification settings - Fork 157
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added work item tag cmdlets to Get, Remove and Update, also fixed typ…
…os and casing (#418) * ✏️ fixed casing and minor typos * Added work item tag cmdlets * Corrected changelog links from 'DarqueWarrior' to 'MethodsAndPractices' org Co-authored-by: Sander <[email protected]> Co-authored-by: Sebastian Schütze <[email protected]>
- Loading branch information
1 parent
544f2b2
commit f2772aa
Showing
25 changed files
with
602 additions
and
128 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
<!-- #include "./common/header.md" --> | ||
|
||
# Get-VSTeamWorkItemTag | ||
|
||
## SYNOPSIS | ||
|
||
<!-- #include "./synopsis/Get-VSTeamWorkItemTag.md" --> | ||
|
||
## SYNTAX | ||
|
||
## DESCRIPTION | ||
|
||
Returns a list of work item tags in a project. | ||
|
||
A single tag can be returned by providing the tag name or id. | ||
|
||
## EXAMPLES | ||
|
||
### Example 1 | ||
|
||
```powershell | ||
Get-VSTeamWorkItemTag | ||
``` | ||
|
||
This will return a list of all the work item tags within the current project | ||
|
||
### Example 2 | ||
|
||
```powershell | ||
Get-VSTeamWorkItemTag -TagId my-tag | ||
``` | ||
|
||
This will return a specific work item tag | ||
|
||
### Example 3 | ||
|
||
```powershell | ||
Get-VSTeamWorkItemTag -TagName my-tag | ||
``` | ||
|
||
This will return a specific work item tag | ||
|
||
## PARAMETERS | ||
|
||
<!-- #include "./params/projectName.md" --> | ||
|
||
### NameOrTagId | ||
|
||
Name or ID of the tag to return | ||
|
||
```yaml | ||
Type: String | ||
Required: True | ||
Position: named | ||
Aliases: TagName, TagId | ||
Parameter Sets: ByIdentifier | ||
``` | ||
## INPUTS | ||
## OUTPUTS | ||
## NOTES | ||
<!-- #include "./common/prerequisites.md" --> | ||
## RELATED LINKS | ||
<!-- #include "./common/related.md" --> | ||
[Update-VSTeamWorkItemTag](Update-VSTeamWorkItemTag.md) | ||
[Remove-VSTeamWorkItemTag](Remove-VSTeamWorkItemTag.md) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
<!-- #include "./common/header.md" --> | ||
|
||
# Remove-VSTeamWorkItemTag | ||
|
||
## SYNOPSIS | ||
|
||
<!-- #include "./synopsis/Get-VSTeamWorkItemTag.md" --> | ||
|
||
## SYNTAX | ||
|
||
## DESCRIPTION | ||
|
||
Removes a work item tag. | ||
|
||
## EXAMPLES | ||
|
||
### Example 1 | ||
|
||
```powershell | ||
Remove-VSTeamWorkItemTag -TagName | ||
``` | ||
|
||
This will remove a specific work item tag within the current project | ||
|
||
## PARAMETERS | ||
|
||
<!-- #include "./params/projectName.md" --> | ||
|
||
### NameOrTagId | ||
|
||
Name or ID of the tag to return | ||
|
||
```yaml | ||
Type: String | ||
Required: True | ||
Position: named | ||
Aliases: TagName, TagId | ||
Parameter Sets: ByIdentifier | ||
``` | ||
## INPUTS | ||
## OUTPUTS | ||
## NOTES | ||
<!-- #include "./common/prerequisites.md" --> | ||
## RELATED LINKS | ||
<!-- #include "./common/related.md" --> | ||
[Get-VSTeamWorkItemTag](Get-VSTeamWorkItemTag.md) | ||
[Remove-VSTeamWorkItemTag](Remove-VSTeamWorkItemTag.md) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
<!-- #include "./common/header.md" --> | ||
|
||
# Update-VSTeamWorkItemTag | ||
|
||
## SYNOPSIS | ||
|
||
<!-- #include "./synopsis/Get-VSTeamWorkItemTag.md" --> | ||
|
||
## SYNTAX | ||
|
||
## DESCRIPTION | ||
|
||
Updates a work item tag. | ||
|
||
## EXAMPLES | ||
|
||
### Example 1 | ||
|
||
```powershell | ||
Update-VSTeamWorkItemTag -TagName | ||
``` | ||
|
||
This will update a specific work item tag within the current project | ||
|
||
## PARAMETERS | ||
|
||
<!-- #include "./params/projectName.md" --> | ||
|
||
### NameOrTagId | ||
|
||
Name or ID of the tag to return | ||
|
||
```yaml | ||
Type: String | ||
Required: True | ||
Position: named | ||
Aliases: TagName, TagId | ||
Parameter Sets: ByIdentifier | ||
``` | ||
## INPUTS | ||
## OUTPUTS | ||
## NOTES | ||
<!-- #include "./common/prerequisites.md" --> | ||
## RELATED LINKS | ||
<!-- #include "./common/related.md" --> | ||
[Get-VSTeamWorkItemTag](Get-VSTeamWorkItemTag.md) | ||
[Remove-VSTeamWorkItemTag](Remove-VSTeamWorkItemTag.md) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Gets a work item tag |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Removes a work item tag |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Updates a work item tag |
Oops, something went wrong.