From 18c2eaa8c0059e2d1608cbf7b0a5a336109d89e6 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Wed, 4 May 2022 00:40:11 +0000 Subject: [PATCH] Build/Test Tools: Pass GitHub Actions environment variables to the Docker container. This ensures that `WP_UnitTestCase::skipOnAutomatedBranches()` has access to the `GITHUB_REF` and `GITHUB_EVENT_NAME` variables, so that some tests can be skipped when appropriate. Additionally, account for renaming the `master` branch to `trunk` in November 2021. Follow-up to [40241], [46999], [49264], [49267], [51868]. Fixes #55668. Built from https://develop.svn.wordpress.org/trunk@53349 git-svn-id: http://core.svn.wordpress.org/trunk@52938 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 7e000eb420..6fc4fc1452 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.1-alpha-53347'; +$wp_version = '6.1-alpha-53349'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.