diff --git a/.github/workflows/check-for-build-warnings.yml b/.github/workflows/check-for-build-warnings.yml new file mode 100644 index 00000000..bc7f847d --- /dev/null +++ b/.github/workflows/check-for-build-warnings.yml @@ -0,0 +1,21 @@ +name: 'OPS status checker' + +on: + pull_request_target: + types: [opened, synchronize, reopened] + +jobs: + status_checker_job: + name: Look for build warnings + runs-on: ubuntu-latest + permissions: + statuses: write + issues: write + pull-requests: write + steps: + - uses: actions/checkout@v3 + - uses: dotnet/docs-actions/actions/status-checker@main + with: + repo_token: ${{ secrets.GITHUB_TOKEN }} + docs_path: "docs" + url_base_path: "dotnet/communitytoolkit"