From 2534bb6554192fce3669b464801f8c16b9942357 Mon Sep 17 00:00:00 2001 From: desrosj Date: Wed, 31 Aug 2022 14:31:12 +0000 Subject: [PATCH] Build/Test Tools: Correct the context variable being used when auto-retrying failed and cancelled workflows. The correct variable here is `github.run_attempt`, which represents the unique number for each attempt of a particular workflow run in a repository. The `github.run_number` currently being used represents the unique number for each run of a particular workflow in a repository. Follow up to [53947]. Fixes #56407. Built from https://develop.svn.wordpress.org/trunk@54039 git-svn-id: http://core.svn.wordpress.org/trunk@53598 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 eb48ed537e..a1b37cd50d 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.1-alpha-54038'; +$wp_version = '6.1-alpha-54039'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.