From 794f4d7e5fa7d8e67780f06b90814d6d694cd211 Mon Sep 17 00:00:00 2001 From: desrosj Date: Tue, 6 Apr 2021 15:28:03 +0000 Subject: [PATCH] Build/Test Tools: Prevent PHPUnit tests on `push` for forks/private mirrors. The reorganization of the PHPUnit workflow in [50441] unintentionally caused the tests to be run for every `push` event, even for forks and private mirrors. Previously, the second job required the first one to pass, and the conditional check on the first prevented both from running. Because the first job is no longer required for the second, both jobs must have the appropriate conditional check. Merges [50670] to the 5.6 branch. Fixes #52983. Built from https://develop.svn.wordpress.org/branches/5.6@50672 git-svn-id: http://core.svn.wordpress.org/branches/5.6@50284 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/version.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-includes/version.php b/wp-includes/version.php index 4cdf734e32..3e04dd2a2e 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.6.3-alpha-50602'; +$wp_version = '5.6.3-alpha-50672'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.