Skip to content

Commit 94b6f9d

Browse files
authored
devops: correct GitHub Actions trigger typo (#28266)
Replaces "pull_quest" with "pull_request", affecting 3 files
1 parent 17cac6d commit 94b6f9d

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

docs/devops/dotnet-build-github-action.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ In the preceding workflow composition:
3030

3131
:::code language="yml" source="snippets/dotnet-build-github-action/build-validation.yml" range="3-9":::
3232

33-
- Triggered when a `push` or `pull_quest` occurs on the `main` branch where any files changed ending with the *.cs* or *.csproj* file extensions.
33+
- Triggered when a `push` or `pull_request` occurs on the `main` branch where any files changed ending with the *.cs* or *.csproj* file extensions.
3434

3535
- The `env` node defines named environment variables (env var).
3636

docs/devops/dotnet-secure-github-action.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ In the preceding workflow composition:
3434

3535
:::code language="yml" source="snippets/dotnet-secure-github-action/codeql-analysis.yml" range="3-15":::
3636

37-
- Triggered when a `push` or `pull_quest` occurs on the `main` branch where any files changed ending with the *.cs* or *.csproj* file extensions.
37+
- Triggered when a `push` or `pull_request` occurs on the `main` branch where any files changed ending with the *.cs* or *.csproj* file extensions.
3838
- As a cron job (on a schedule) — to run at 8:00 UTC every Thursday.
3939

4040
- The `jobs` node builds out the steps for the workflow to take.

docs/devops/dotnet-test-github-action.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ In the preceding workflow composition:
3030

3131
:::code language="yml" source="snippets/dotnet-test-github-action/build-and-test.yml" range="3-9":::
3232

33-
- Triggered when a `push` or `pull_quest` occurs on the `main` branch where any files changed ending with the *.cs* or *.csproj* file extensions.
33+
- Triggered when a `push` or `pull_request` occurs on the `main` branch where any files changed ending with the *.cs* or *.csproj* file extensions.
3434

3535
- The `env` node defines named environment variables (env var).
3636

0 commit comments

Comments
 (0)