Skip to content

Commit

Permalink
fix(pr): Improve rebase instructions (#31526)
Browse files Browse the repository at this point in the history
  • Loading branch information
pascalberger authored Sep 22, 2024
1 parent b2588e3 commit 2c9a076
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/modules/platform/azure/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down
2 changes: 1 addition & 1 deletion lib/modules/platform/bitbucket-server/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down
2 changes: 1 addition & 1 deletion lib/modules/platform/codecommit/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down

0 comments on commit 2c9a076

Please sign in to comment.