mirror of
https://github.com/github/awesome-copilot.git
synced 2026-03-14 05:05:15 +00:00
Merge pull request #841 from fondoger/fondoger/ado-skill-update
Split azure-devops-cli SKILL.md into samller files
This commit is contained in:
258
skills/azure-devops-cli/references/boards-and-iterations.md
Normal file
258
skills/azure-devops-cli/references/boards-and-iterations.md
Normal file
@@ -0,0 +1,258 @@
|
||||
# Work Items, Area Paths & Iterations
|
||||
|
||||
## Table of Contents
|
||||
- [Work Items (Boards)](#work-items-boards)
|
||||
- [Area Paths](#area-paths)
|
||||
- [Iterations](#iterations)
|
||||
|
||||
---
|
||||
|
||||
## Work Items (Boards)
|
||||
|
||||
### Query Work Items
|
||||
|
||||
```bash
|
||||
# WIQL query
|
||||
az boards query \
|
||||
--wiql "SELECT [System.Id], [System.Title], [System.State] FROM WorkItems WHERE [System.AssignedTo] = @Me AND [System.State] = 'Active'"
|
||||
|
||||
# Query with output format
|
||||
az boards query --wiql "SELECT * FROM WorkItems" --output table
|
||||
```
|
||||
|
||||
### Show Work Item
|
||||
|
||||
```bash
|
||||
az boards work-item show --id {work-item-id}
|
||||
az boards work-item show --id {work-item-id} --open
|
||||
```
|
||||
|
||||
### Create Work Item
|
||||
|
||||
```bash
|
||||
# Basic work item
|
||||
az boards work-item create \
|
||||
--title "Fix login bug" \
|
||||
--type Bug \
|
||||
--assigned-to user@example.com \
|
||||
--description "Users cannot login with SSO"
|
||||
|
||||
# With area and iteration
|
||||
az boards work-item create \
|
||||
--title "New feature" \
|
||||
--type "User Story" \
|
||||
--area "Project\\Area1" \
|
||||
--iteration "Project\\Sprint 1"
|
||||
|
||||
# With custom fields
|
||||
az boards work-item create \
|
||||
--title "Task" \
|
||||
--type Task \
|
||||
--fields "Priority=1" "Severity=2"
|
||||
|
||||
# With discussion comment
|
||||
az boards work-item create \
|
||||
--title "Issue" \
|
||||
--type Bug \
|
||||
--discussion "Initial investigation completed"
|
||||
|
||||
# Open in browser after creation
|
||||
az boards work-item create --title "Bug" --type Bug --open
|
||||
```
|
||||
|
||||
### Update Work Item
|
||||
|
||||
```bash
|
||||
# Update state, title, and assignee
|
||||
az boards work-item update \
|
||||
--id {work-item-id} \
|
||||
--state "Active" \
|
||||
--title "Updated title" \
|
||||
--assigned-to user@example.com
|
||||
|
||||
# Move to different area
|
||||
az boards work-item update \
|
||||
--id {work-item-id} \
|
||||
--area "{ProjectName}\\{Team}\\{Area}"
|
||||
|
||||
# Change iteration
|
||||
az boards work-item update \
|
||||
--id {work-item-id} \
|
||||
--iteration "{ProjectName}\\Sprint 5"
|
||||
|
||||
# Add comment/discussion
|
||||
az boards work-item update \
|
||||
--id {work-item-id} \
|
||||
--discussion "Work in progress"
|
||||
|
||||
# Update with custom fields
|
||||
az boards work-item update \
|
||||
--id {work-item-id} \
|
||||
--fields "Priority=1" "StoryPoints=5"
|
||||
```
|
||||
|
||||
### Delete Work Item
|
||||
|
||||
```bash
|
||||
# Soft delete (can be restored)
|
||||
az boards work-item delete --id {work-item-id} --yes
|
||||
|
||||
# Permanent delete
|
||||
az boards work-item delete --id {work-item-id} --destroy --yes
|
||||
```
|
||||
|
||||
### Work Item Relations
|
||||
|
||||
```bash
|
||||
# List relations
|
||||
az boards work-item relation list --id {work-item-id}
|
||||
|
||||
# List supported relation types
|
||||
az boards work-item relation list-type
|
||||
|
||||
# Add relation
|
||||
az boards work-item relation add --id {work-item-id} --relation-type parent --target-id {parent-id}
|
||||
|
||||
# Remove relation
|
||||
az boards work-item relation remove --id {work-item-id} --relation-id {relation-id}
|
||||
```
|
||||
|
||||
## Area Paths
|
||||
|
||||
### List Areas for Project
|
||||
|
||||
```bash
|
||||
az boards area project list --project {project}
|
||||
az boards area project show --path "Project\\Area1" --project {project}
|
||||
```
|
||||
|
||||
### Create Area
|
||||
|
||||
```bash
|
||||
az boards area project create --path "Project\\NewArea" --project {project}
|
||||
```
|
||||
|
||||
### Update Area
|
||||
|
||||
```bash
|
||||
az boards area project update \
|
||||
--path "Project\\OldArea" \
|
||||
--new-path "Project\\UpdatedArea" \
|
||||
--project {project}
|
||||
```
|
||||
|
||||
### Delete Area
|
||||
|
||||
```bash
|
||||
az boards area project delete --path "Project\\AreaToDelete" --project {project} --yes
|
||||
```
|
||||
|
||||
### Area Team Management
|
||||
|
||||
```bash
|
||||
# List areas for team
|
||||
az boards area team list --team {team-name} --project {project}
|
||||
|
||||
# Add area to team
|
||||
az boards area team add \
|
||||
--team {team-name} \
|
||||
--path "Project\\NewArea" \
|
||||
--project {project}
|
||||
|
||||
# Remove area from team
|
||||
az boards area team remove \
|
||||
--team {team-name} \
|
||||
--path "Project\\AreaToRemove" \
|
||||
--project {project}
|
||||
|
||||
# Update team area
|
||||
az boards area team update \
|
||||
--team {team-name} \
|
||||
--path "Project\\Area" \
|
||||
--project {project} \
|
||||
--include-sub-areas true
|
||||
```
|
||||
|
||||
## Iterations
|
||||
|
||||
### List Iterations for Project
|
||||
|
||||
```bash
|
||||
az boards iteration project list --project {project}
|
||||
az boards iteration project show --path "Project\\Sprint 1" --project {project}
|
||||
```
|
||||
|
||||
### Create Iteration
|
||||
|
||||
```bash
|
||||
az boards iteration project create --path "Project\\Sprint 1" --project {project}
|
||||
```
|
||||
|
||||
### Update Iteration
|
||||
|
||||
```bash
|
||||
az boards iteration project update \
|
||||
--path "Project\\OldSprint" \
|
||||
--new-path "Project\\NewSprint" \
|
||||
--project {project}
|
||||
```
|
||||
|
||||
### Delete Iteration
|
||||
|
||||
```bash
|
||||
az boards iteration project delete --path "Project\\OldSprint" --project {project} --yes
|
||||
```
|
||||
|
||||
### Team Iterations
|
||||
|
||||
```bash
|
||||
# List iterations for team
|
||||
az boards iteration team list --team {team-name} --project {project}
|
||||
|
||||
# Add iteration to team
|
||||
az boards iteration team add \
|
||||
--team {team-name} \
|
||||
--path "Project\\Sprint 1" \
|
||||
--project {project}
|
||||
|
||||
# Remove iteration from team
|
||||
az boards iteration team remove \
|
||||
--team {team-name} \
|
||||
--path "Project\\Sprint 1" \
|
||||
--project {project}
|
||||
|
||||
# List work items in iteration
|
||||
az boards iteration team list-work-items \
|
||||
--team {team-name} \
|
||||
--path "Project\\Sprint 1" \
|
||||
--project {project}
|
||||
```
|
||||
|
||||
### Default & Backlog Iterations
|
||||
|
||||
```bash
|
||||
# Set default iteration for team
|
||||
az boards iteration team set-default-iteration \
|
||||
--team {team-name} \
|
||||
--path "Project\\Sprint 1" \
|
||||
--project {project}
|
||||
|
||||
# Show default iteration
|
||||
az boards iteration team show-default-iteration \
|
||||
--team {team-name} \
|
||||
--project {project}
|
||||
|
||||
# Set backlog iteration for team
|
||||
az boards iteration team set-backlog-iteration \
|
||||
--team {team-name} \
|
||||
--path "Project\\Sprint 1" \
|
||||
--project {project}
|
||||
|
||||
# Show backlog iteration
|
||||
az boards iteration team show-backlog-iteration \
|
||||
--team {team-name} \
|
||||
--project {project}
|
||||
|
||||
# Show current iteration
|
||||
az boards iteration team show --team {team-name} --project {project} --timeframe current
|
||||
```
|
||||
Reference in New Issue
Block a user