From 207fe0533e5fadab0dd67e55269b66d87a4837ce Mon Sep 17 00:00:00 2001 From: desrosj Date: Thu, 19 Oct 2023 14:00:22 +0000 Subject: [PATCH] =?UTF-8?q?Build/Test=20Tools:=20Don=E2=80=99t=20run=20the?= =?UTF-8?q?=20performance=20workflow=20when=20branching.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit When a branch is created, there is no previous commit to reference in the `github.event.before` context, which causes the performance workflow to fail because there is no previous commit to perform a comparison with. This adds a condition to check that `github.event.before` is not set to `0000000000000000000000000000000000000000`, which is the default value when there are no previous commits. Props swissspidy. See #588867. Built from https://develop.svn.wordpress.org/trunk@56972 git-svn-id: http://core.svn.wordpress.org/trunk@56483 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 b05ae84de1..b25d24f868 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.5-alpha-56971'; +$wp_version = '6.5-alpha-56972'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.