[docs] Correct the documentation on observability support with Native AOT on iOS and Mac Catalyst #2724
Workflow file for this run
This file contains 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: | |
types: [opened, synchronize, reopened] | |
permissions: | |
contents: read | |
jobs: | |
status_checker_job: | |
name: Look for build warnings | |
runs-on: ubuntu-latest | |
permissions: | |
statuses: read | |
pull-requests: write | |
steps: | |
- name: Harden Runner | |
uses: step-security/harden-runner@0d381219ddf674d61a7572ddd19d7941e271515c # v2.9.0 | |
with: | |
egress-policy: audit | |
- uses: dotnet/docs-tools/actions/status-checker@5e8bcc78465d45a7544bba56509a1a69922b6a5a # main | |
with: | |
repo_token: ${{ secrets.GITHUB_TOKEN }} | |
docs_path: "docs" | |
url_base_path: "dotnet/maui" |