From f281a70f004c1d9124d7d1541850ce1e05f85c1f Mon Sep 17 00:00:00 2001 From: "Andy (Steve) De George" <67293991+adegeo@users.noreply.github.com> Date: Wed, 21 Apr 2021 15:22:50 -0700 Subject: [PATCH] Add support for status checker (#1038) * Create check-for-build-warning.yml * Rename check-for-build-warning.yml to check-for-build-warnings.yml --- .github/workflows/check-for-build-warnings.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/workflows/check-for-build-warnings.yml 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 }}