From d3672453744eec623314a7a5f4713a5ab225d1a4 Mon Sep 17 00:00:00 2001 From: Ryan Baxter Date: Mon, 20 Jul 2026 15:28:52 -0400 Subject: [PATCH] Fix expected step name in spring-release-train-project-ready validation The action's step was renamed from 'Commit and push release version changes' to 'Commit and push changes', but the action.yml validation in the test workflow still expected the old name, so it failed with 'Missing expected step'. Update the expected step name to match. Signed-off-by: Ryan Baxter --- .github/workflows/test-spring-release-train-project-ready.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test-spring-release-train-project-ready.yml b/.github/workflows/test-spring-release-train-project-ready.yml index d38ba65..8fdaaf2 100644 --- a/.github/workflows/test-spring-release-train-project-ready.yml +++ b/.github/workflows/test-spring-release-train-project-ready.yml @@ -53,7 +53,7 @@ jobs: 'Checkout project release branch', 'Update project versions', 'Verify no snapshot versions', - 'Commit and push release version changes', + 'Commit and push changes', 'Trigger release-train-ready workflow', ]; for (const expected of expectedSteps) {