From c4f9d0d4cfbfe52b071f229508815083b1114abe Mon Sep 17 00:00:00 2001 From: Giles Odigwe Date: Mon, 11 May 2026 08:10:58 -0700 Subject: [PATCH] Include workflow file in functions/core path filters A PR editing only dotnet-build-and-test.yml would skip dotnet-test-functions because the workflow path was missing from both the functions and core path filter lists. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- .github/workflows/dotnet-build-and-test.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/dotnet-build-and-test.yml b/.github/workflows/dotnet-build-and-test.yml index 8d20f5196a..a4ce1963d2 100644 --- a/.github/workflows/dotnet-build-and-test.yml +++ b/.github/workflows/dotnet-build-and-test.yml @@ -71,6 +71,7 @@ jobs: - 'dotnet/tests/Microsoft.Agents.AI.DurableTask.IntegrationTests/**' - 'dotnet/tests/Microsoft.Agents.AI.Hosting.AzureFunctions.IntegrationTests/**' - '.github/actions/azure-functions-integration-setup/**' + - '.github/workflows/dotnet-build-and-test.yml' core: - 'dotnet/src/Microsoft.Agents.AI/**' - 'dotnet/src/Microsoft.Agents.AI.Abstractions/**' @@ -81,6 +82,7 @@ jobs: - 'dotnet/tests/Directory.Build.props' - 'dotnet/Directory.Packages.props' - 'dotnet/global.json' + - '.github/workflows/dotnet-build-and-test.yml' # run only if 'dotnet' files were changed - name: dotnet tests if: steps.filter.outputs.dotnet == 'true'