From f206c2b5af143ba2da51d8fb28a8b279780612a7 Mon Sep 17 00:00:00 2001 From: "Andy (Steve) De George" <67293991+adegeo@users.noreply.github.com> Date: Wed, 21 Apr 2021 15:17:05 -0700 Subject: [PATCH 1/2] Fix redirect (#1037) --- .openpublishing.redirection.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.openpublishing.redirection.json b/.openpublishing.redirection.json index d67c743..5788811 100644 --- a/.openpublishing.redirection.json +++ b/.openpublishing.redirection.json @@ -306,7 +306,7 @@ }, { "source_path": "dotnet-desktop-guide/framework/wpf/fundamentals/xaml.md", - "redirect_url": "/dotnet/desktop/wpf/xaml/overview?view=netdesktop-5.0" + "redirect_url": "/dotnet/desktop/wpf/xaml/index?view=netdesktop-5.0" }, { "source_path": "dotnet-desktop-guide/framework/wpf/fundamentals/xaml-resources-define.md", 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 2/2] 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 }}