From 94b6f9d0a120434a42419466cc1e24a02c39eb67 Mon Sep 17 00:00:00 2001 From: Scott W Harden Date: Wed, 16 Feb 2022 14:50:28 -0500 Subject: [PATCH] devops: correct GitHub Actions trigger typo (#28266) Replaces "pull_quest" with "pull_request", affecting 3 files --- docs/devops/dotnet-build-github-action.md | 2 +- docs/devops/dotnet-secure-github-action.md | 2 +- docs/devops/dotnet-test-github-action.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/devops/dotnet-build-github-action.md b/docs/devops/dotnet-build-github-action.md index 83c31ec02f09a..7ba32e369a72d 100644 --- a/docs/devops/dotnet-build-github-action.md +++ b/docs/devops/dotnet-build-github-action.md @@ -30,7 +30,7 @@ In the preceding workflow composition: :::code language="yml" source="snippets/dotnet-build-github-action/build-validation.yml" range="3-9"::: - - Triggered when a `push` or `pull_quest` occurs on the `main` branch where any files changed ending with the *.cs* or *.csproj* file extensions. + - Triggered when a `push` or `pull_request` occurs on the `main` branch where any files changed ending with the *.cs* or *.csproj* file extensions. - The `env` node defines named environment variables (env var). diff --git a/docs/devops/dotnet-secure-github-action.md b/docs/devops/dotnet-secure-github-action.md index 6d694b29be063..7b3c2cce7992f 100644 --- a/docs/devops/dotnet-secure-github-action.md +++ b/docs/devops/dotnet-secure-github-action.md @@ -34,7 +34,7 @@ In the preceding workflow composition: :::code language="yml" source="snippets/dotnet-secure-github-action/codeql-analysis.yml" range="3-15"::: - - Triggered when a `push` or `pull_quest` occurs on the `main` branch where any files changed ending with the *.cs* or *.csproj* file extensions. + - Triggered when a `push` or `pull_request` occurs on the `main` branch where any files changed ending with the *.cs* or *.csproj* file extensions. - As a cron job (on a schedule) — to run at 8:00 UTC every Thursday. - The `jobs` node builds out the steps for the workflow to take. diff --git a/docs/devops/dotnet-test-github-action.md b/docs/devops/dotnet-test-github-action.md index b0403ee9da241..941b113435896 100644 --- a/docs/devops/dotnet-test-github-action.md +++ b/docs/devops/dotnet-test-github-action.md @@ -30,7 +30,7 @@ In the preceding workflow composition: :::code language="yml" source="snippets/dotnet-test-github-action/build-and-test.yml" range="3-9"::: - - Triggered when a `push` or `pull_quest` occurs on the `main` branch where any files changed ending with the *.cs* or *.csproj* file extensions. + - Triggered when a `push` or `pull_request` occurs on the `main` branch where any files changed ending with the *.cs* or *.csproj* file extensions. - The `env` node defines named environment variables (env var).