From 4694f287d2b7c010b57eabf7e88be08c5237f47e Mon Sep 17 00:00:00 2001 From: Jonathan Desrosiers Date: Mon, 17 Mar 2025 16:00:07 +0000 Subject: [PATCH] Build/Test Tools: Correct E2E workflow path filtering. The reusable E2E workflow does not yet follow the `-v#` pattern because there is only one version. The current pattern is not matching the `reusable-end-to-end-tests.yml` file. See #62221. git-svn-id: https://develop.svn.wordpress.org/trunk@60004 602fd350-edb4-49c9-b593-d223f7449a82 --- .github/workflows/end-to-end-tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/end-to-end-tests.yml b/.github/workflows/end-to-end-tests.yml index cc8f348101..18e7cafa56 100644 --- a/.github/workflows/end-to-end-tests.yml +++ b/.github/workflows/end-to-end-tests.yml @@ -33,7 +33,7 @@ on: - 'tests/e2e/**' # Confirm any changes to relevant workflow files. - '.github/workflows/end-to-end-tests.yml' - - '.github/workflows/reusable-end-to-end-tests-*.yml' + - '.github/workflows/reusable-end-to-end-tests*.yml' workflow_dispatch: # Cancels all previous workflow runs for pull requests that have not completed.