chore: publish from main

This commit is contained in:
github-actions[bot]
2026-06-29 23:47:36 +00:00
parent 4e0cf4cda7
commit 21ca2293be
4 changed files with 68 additions and 1 deletions
@@ -56,6 +56,10 @@ az boards work-item create \
--type Bug \
--discussion "Initial investigation completed"
# For a long --discussion body on Windows, see references/long-comments-on-windows.md.
# Short version: use azps.ps1 in PowerShell, or fall back to 'az devops invoke'
# with --in-file when no native --file-path flag is available.
# Open in browser after creation
az boards work-item create --title "Bug" --type Bug --open
```
@@ -85,6 +89,14 @@ az boards work-item update \
--id {work-item-id} \
--discussion "Work in progress"
# Long comment on Windows: read the body into a PowerShell variable and call
# azps.ps1 instead of az.cmd, or fall back to 'az devops invoke' with --in-file.
# Full guidance in references/long-comments-on-windows.md.
#
# PowerShell example:
# $body = Get-Content -Raw .\comment.md
# azps.ps1 boards work-item update --id 1234 --discussion $body
# Update with custom fields
az boards work-item update \
--id {work-item-id} \