1.5 KiB
1.5 KiB
description
| description |
|---|
| Check pull request status and CI results |
Check pull request status, CI results, and review details.
GitHub CLI commands:
-
List Recent PRs:
gh pr list --repo DataDog/dd-trace-dotnet -
View PR Details:
gh pr view <pr-number> --repo DataDog/dd-trace-dotnet -
Check PR Status/Checks:
gh pr checks <pr-number> --repo DataDog/dd-trace-dotnet -
View PR Diff:
gh pr diff <pr-number> --repo DataDog/dd-trace-dotnet
Azure DevOps commands:
-
List Pipeline Runs:
az pipelines runs list --org https://dev.azure.com/datadoghq --project dd-trace-dotnet -
View Run Details:
az pipelines runs show --id <run-id> --org https://dev.azure.com/datadoghq --project dd-trace-dotnet
What to check:
- Build status: All builds passing
- Test results: No failing tests
- Code coverage: Coverage maintained or improved
- Integration tests: All integration tests passing
- Smoke tests: Smoke tests successful
- PR template: All sections filled out
- Reviews: Required reviewers approved
Common issues:
- Flaky tests: Check test history for patterns
- Timeout: Look for long-running tests
- Docker issues: Verify Docker services are healthy
- Dependencies: Check for version conflicts
After checking:
- Report status summary (passed/failed/running)
- Identify any blocking issues
- Suggest fixes for failures
- Provide links to detailed results