From b79a708ab67f577f0ab0fd00eeac2d8f263a5760 Mon Sep 17 00:00:00 2001 From: desrosj Date: Fri, 8 Apr 2022 13:59:06 +0000 Subject: [PATCH] =?UTF-8?q?Build/Test=20Tools:=20Improve=20the=20accuracy?= =?UTF-8?q?=20of=20=E2=80=9Cfixed=E2=80=9D=20Slack=20notifications.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This adjusts the logic of the Slack Notifications workflow to make the “fixed” notifications more reliable. Currently, the workflow looks at the immediately preceding workflow run for the current branch. This fails to indicate that a workflow is fixed when other unrelated commits are made, and when rerunning the workflow after a false failure (timeout, etc.). The workflow will now use the following logic to determine if something has been fixed: - When a workflow is rerun, the conclusion for the immediately preceding run attempt will now be used to determine if the current attempt has “fixed” the workflow. - When on the first run attempt for a workflow run, the workflow conclusion for the immediately preceding commit will be used. - When on the first run attempt for a workflow run and no preceding commits for the current branch are present (this is a fresh tag or branch), always consider it “fixed”. Props davidbaumwald. See #54742. Built from https://develop.svn.wordpress.org/trunk@53108 git-svn-id: http://core.svn.wordpress.org/trunk@52697 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 0b99ce0a25..404bfb5117 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.0-alpha-53107'; +$wp_version = '6.0-alpha-53108'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.