Loading source
Pulling the file list, source metadata, and syntax-aware rendering for this listing.
Source from repo
Execute Azure deployments using azd, Terraform, or Bicep with built-in error recovery.
Files
Skill
Size
Entrypoint
Format
Open file
Syntax-highlighted preview of this file as included in the skill package.
references/recipes/cicd/verify.md
1# CI/CD Verification23Check pipeline run status:4- **GitHub**: Actions tab → workflow run5- **Azure DevOps**: Pipelines → pipeline run67## Verify Deployed Resources89```bash10az resource list --resource-group <rg-name> --output table11```1213## Health Check1415```bash16curl -s https://<endpoint>/health | jq .17```1819## Report Results to User2021> ⛔ **MANDATORY** — You **MUST** present the deployed endpoint URLs to the user in your response.2223Extract endpoints from the pipeline output or query them directly via `az` CLI. Present a summary including all service URLs as fully-qualified `https://` links. If any command returns a bare hostname (e.g. `myapp.azurewebsites.net`), always prepend `https://`. Do NOT end your response without including them.24