From dc3a76e8f325e05eca7534babf9e42cdc14bb5bd Mon Sep 17 00:00:00 2001 From: desrosj Date: Wed, 24 Feb 2021 19:36:09 +0000 Subject: [PATCH] Build/Test Tools: Limit when GitHub Action workflows run on `pull_request`. Different branches have support for different types of testing based on the tooling that was in place at the time each version was branched. The workflows currently in place have patterns configured to match the relevant `branches` and `tags` for each workflow, but only for `push` events. This copies the patterns for matching supported `branches` over to the `pull_request` event to prevent workflows from running for a pull request to a branch that does not support that workflow. Fixes #52643. Built from https://develop.svn.wordpress.org/trunk@50432 git-svn-id: http://core.svn.wordpress.org/trunk@50043 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 3e8af63793..077c30862f 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.8-alpha-50430'; +$wp_version = '5.8-alpha-50432'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.