From 245dde210781bd77ba68811cf1ac4238fb6b554a Mon Sep 17 00:00:00 2001 From: Felix Arntz Date: Fri, 4 Oct 2024 16:26:12 +0000 Subject: [PATCH] Build/Test Tools: Resolve access failure to continue sending commit performance data to Code Vitals dashboard. This originally broke in [58165] and unfortunately went unnoticed for a while because the failing request to send the data did not cause the GitHub workflows to fail. This changeset resolves the underlying access problem, which was happening because reusable GitHub workflows do not automatically receive secrets from the calling workflow. More concretely, the relevant `CODEVITALS_PROJECT_TOKEN` was not being explicitly passed to the reusable workflow. The changeset also includes a change so that in the future a failing request would cause the workflow to fail, which ensures a similar problem further down the road wouldn't go unnoticed. Props joemcgill, flixos90, swissspidy, mukesh27, sergeybiryukov Fixes #62153. See #61213. Built from https://develop.svn.wordpress.org/trunk@59170 git-svn-id: http://core.svn.wordpress.org/trunk@58565 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 72c2bc2bf7..e8165bdcac 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.7-beta1-59169'; +$wp_version = '6.7-beta1-59170'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.