diff --git a/.github/workflows/check-for-build-warnings.yml b/.github/workflows/check-for-build-warnings.yml new file mode 100644 index 0000000..25f6676 --- /dev/null +++ b/.github/workflows/check-for-build-warnings.yml @@ -0,0 +1,14 @@ +name: 'Status checker' + +on: + pull_request_target: + types: [opened, synchronize, reopened] + +jobs: + status_checker_job: + name: Look for build warnings + runs-on: ubuntu-latest + steps: + - uses: dotnet/samples/.github/actions/status-checker@main + with: + repo-token: ${{ secrets.GITHUB_TOKEN }}