Skip to content

Commit

Permalink
devops: correct GitHub Actions trigger typo (#28266)
Browse files Browse the repository at this point in the history
Replaces "pull_quest" with "pull_request", affecting 3 files
  • Loading branch information
swharden committed Feb 16, 2022
1 parent 17cac6d commit 94b6f9d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/devops/dotnet-build-github-action.md
Original file line number Diff line number Diff line change
Expand Up @@ -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).

Expand Down
2 changes: 1 addition & 1 deletion docs/devops/dotnet-secure-github-action.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion docs/devops/dotnet-test-github-action.md
Original file line number Diff line number Diff line change
Expand Up @@ -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).

Expand Down

0 comments on commit 94b6f9d

Please sign in to comment.