From b2591f6ce0eb40278422536ba8d9fef4c4698804 Mon Sep 17 00:00:00 2001 From: Timothy Deakin Date: Fri, 6 Mar 2026 17:33:29 +0000 Subject: [PATCH 1/2] fix: update env waittime description Signed-off-by: Timothy Deakin --- .changeset/ten-terms-matter.md | 5 +++++ .../src/actions/githubEnvironment.ts | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) create mode 100644 .changeset/ten-terms-matter.md diff --git a/.changeset/ten-terms-matter.md b/.changeset/ten-terms-matter.md new file mode 100644 index 0000000000..988f3a004d --- /dev/null +++ b/.changeset/ten-terms-matter.md @@ -0,0 +1,5 @@ +--- +'@backstage/plugin-scaffolder-backend-module-github': patch +--- + +Fixed environement `waitTime` description incorrectly asking for milliseconds instead of minutes. diff --git a/plugins/scaffolder-backend-module-github/src/actions/githubEnvironment.ts b/plugins/scaffolder-backend-module-github/src/actions/githubEnvironment.ts index 4a36be3b5b..7e2c880b5d 100644 --- a/plugins/scaffolder-backend-module-github/src/actions/githubEnvironment.ts +++ b/plugins/scaffolder-backend-module-github/src/actions/githubEnvironment.ts @@ -111,7 +111,7 @@ Wildcard characters will not match \`/\`. For example, to match tags that begin z .number({ description: - 'The time to wait before creating or updating the environment (in milliseconds)', + 'The time to wait before creating or updating the environment (in minutes)', }) .optional(), preventSelfReview: z => From 83d3057ae232caf9e0e5a734ba1fe5fb86bf4553 Mon Sep 17 00:00:00 2001 From: Timothy Deakin Date: Fri, 6 Mar 2026 17:52:56 +0000 Subject: [PATCH 2/2] Update .changeset/ten-terms-matter.md Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Signed-off-by: Timothy Deakin --- .changeset/ten-terms-matter.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.changeset/ten-terms-matter.md b/.changeset/ten-terms-matter.md index 988f3a004d..c0823c25dc 100644 --- a/.changeset/ten-terms-matter.md +++ b/.changeset/ten-terms-matter.md @@ -2,4 +2,4 @@ '@backstage/plugin-scaffolder-backend-module-github': patch --- -Fixed environement `waitTime` description incorrectly asking for milliseconds instead of minutes. +Fixed environment `waitTime` description incorrectly asking for milliseconds instead of minutes.