From 03a200a9c0cf9b706c4e9bbd51fc83bf3ed4d4f2 Mon Sep 17 00:00:00 2001 From: desrosj Date: Mon, 24 Oct 2022 15:20:14 +0000 Subject: [PATCH] Build/Test Tools: Hardcode the `ref` for the workflow dispatch on failure. This removes the dynamic aspect of the `createWorkflowDispatch()` call that dispatches a Failed Workflow run when another workflow encounters an issue. By hardcoding `trunk` as the `ref`, the version of the workflow used will always be the latest, most up to date. This ensures older branches receive the bug fixes and improvements made in `trunk` without having to backport them. See #55652. Built from https://develop.svn.wordpress.org/trunk@54674 git-svn-id: http://core.svn.wordpress.org/trunk@54226 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 aae409bf66..46b33448bf 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.2-alpha-54673'; +$wp_version = '6.2-alpha-54674'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.