From 215812eba9476d912f44057382dbfe41207807f7 Mon Sep 17 00:00:00 2001 From: desrosj Date: Fri, 14 Mar 2025 18:53:28 +0000 Subject: [PATCH] Build/Test Tools: Introduce a workflow for checking built files. There are several files generated and updated by the build process that are under version control. Including changes to these files is a common missed step for contributors regardless of experience level. This introduces a workflow that checks for changes to versioned files as a result of other changes in pull requests and commits them back to the head branch. Because this workflow requires the `pull_request_target` event instead of `pull_request`, local references to reusable workflows should never be used. In addition to improving the contributor experience, this also opens the door to use Dependabot for monitoring npm dependencies, many of which produce changes to built files when updating. Props desrosj, johnbillion, joemcgill, swissspidy. See #62221. Built from https://develop.svn.wordpress.org/trunk@59983 git-svn-id: http://core.svn.wordpress.org/trunk@59325 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 dee8a28deb..57b5dab82a 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.8-beta2-59982'; +$wp_version = '6.8-beta2-59983'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.