From ea2f0e6d60d109e42f23df9e8cf30bac07c15945 Mon Sep 17 00:00:00 2001 From: Jonathan Desrosiers Date: Fri, 22 Dec 2023 01:21:27 +0000 Subject: [PATCH] Build/Test Tools: Run installation tests when data files are updated. When the JSON data files that supply the PHP/MySQL version support to the installation test workflow are changed, the workflow should be run to confirm the changes are correct. This updates the `path` filtering rules to ensure this happens. Follow up to [57218], [57219]. See #58977. git-svn-id: https://develop.svn.wordpress.org/trunk@57220 602fd350-edb4-49c9-b593-d223f7449a82 --- .github/workflows/install-testing.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/install-testing.yml b/.github/workflows/install-testing.yml index b9e8612e4c..60e531a43c 100644 --- a/.github/workflows/install-testing.yml +++ b/.github/workflows/install-testing.yml @@ -10,10 +10,12 @@ on: # Always test the workflow after it's updated. paths: - '.github/workflows/install-testing.yml' + - '.version-support-*.json' pull_request: # Always test the workflow when changes are suggested. paths: - '.github/workflows/install-testing.yml' + - '.version-support-*.json' schedule: - cron: '0 0 * * 1' workflow_dispatch: