From 00725c7015803504718a31a8ad914993bf495c93 Mon Sep 17 00:00:00 2001 From: desrosj Date: Fri, 16 Oct 2020 00:39:08 +0000 Subject: [PATCH] =?UTF-8?q?Build/Test=20Tools:=20Change=20the=20event=20th?= =?UTF-8?q?at=20triggers=20the=20=E2=80=9CWelcome=E2=80=9D=20workflow.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit When a contributor opens their first pull request to `wordpress-develop`, the “Welcome” workflow runs and leaves a comment with guidance, helpful information, and resources. However, because a workflow run triggered by the `pull_request` event runs against the workflow and code from the merge commit, the needed context and permissions to comment on the pull request are missing. By changing the trigger event to `pull_request_target`, the workflow runs against the workflow and code in the base of the pull request and is able to comment on when appropriate. See #50401. Built from https://develop.svn.wordpress.org/trunk@49169 git-svn-id: http://core.svn.wordpress.org/trunk@48931 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 2c185ba515..e2f7acb1ce 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.6-alpha-49168'; +$wp_version = '5.6-alpha-49169'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.