Add troubleshooting guidance for Azure DevOps pipeline "azd init" errors #5317
This file contains hidden or 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
name: OPS status checker | |
on: | |
pull_request_target: | |
types: [opened, synchronize, reopened] | |
permissions: | |
contents: read | |
jobs: | |
status_checker_job: | |
name: Look for build warnings | |
runs-on: ubuntu-latest | |
permissions: | |
statuses: write | |
issues: write | |
pull-requests: write | |
steps: | |
- name: Harden Runner | |
uses: step-security/harden-runner@0634a2670c59f64b4a01f0f96f84700a4088b9f0 # v2.12.0 | |
with: | |
egress-policy: audit | |
- uses: dotnet/docs-tools/actions/status-checker@main | |
with: | |
repo_token: ${{ secrets.GITHUB_TOKEN }} | |
docs_path: "docs" | |
url_base_path: "dotnet/aspire" |