From 2c9a0761e7105f05c6cc622c5ee6c463179f4933 Mon Sep 17 00:00:00 2001 From: Pascal Berger Date: Sun, 22 Sep 2024 09:39:12 +0200 Subject: [PATCH] fix(pr): Improve rebase instructions (#31526) --- lib/modules/platform/azure/index.ts | 2 +- lib/modules/platform/bitbucket-server/index.ts | 2 +- lib/modules/platform/codecommit/index.ts | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/modules/platform/azure/index.ts b/lib/modules/platform/azure/index.ts index 13356c9211da50..8049c82a19b907 100644 --- a/lib/modules/platform/azure/index.ts +++ b/lib/modules/platform/azure/index.ts @@ -814,7 +814,7 @@ export function massageMarkdown(input: string): string { return smartTruncate(input, maxBodyLength()) .replace( 'you tick the rebase/retry checkbox', - 'rename PR to start with "rebase!"', + 'PR is renamed to start with "rebase!"', ) .replace( 'checking the rebase/retry box above', diff --git a/lib/modules/platform/bitbucket-server/index.ts b/lib/modules/platform/bitbucket-server/index.ts index 3811ee5e09ce18..aed50c88f68ed7 100644 --- a/lib/modules/platform/bitbucket-server/index.ts +++ b/lib/modules/platform/bitbucket-server/index.ts @@ -1107,7 +1107,7 @@ export function massageMarkdown(input: string): string { return smartTruncate(input, maxBodyLength()) .replace( 'you tick the rebase/retry checkbox', - 'rename PR to start with "rebase!"', + 'PR is renamed to start with "rebase!"', ) .replace( 'checking the rebase/retry box above', diff --git a/lib/modules/platform/codecommit/index.ts b/lib/modules/platform/codecommit/index.ts index c10e5d16012af4..40cff5a5899f66 100644 --- a/lib/modules/platform/codecommit/index.ts +++ b/lib/modules/platform/codecommit/index.ts @@ -306,7 +306,7 @@ export function massageMarkdown(input: string): string { return input .replace( 'you tick the rebase/retry checkbox', - 'rename PR to start with "rebase!"', + 'PR is renamed to start with "rebase!"', ) .replace( 'checking the rebase/retry box above',