mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-12 06:56:24 +00:00
chore: reword branch creation limit message on onboarding PR (#19391)
This commit is contained in:
parent
e5913d4587
commit
996d3b19b6
2 changed files with 2 additions and 2 deletions
|
@ -132,7 +132,7 @@ describe('workers/repository/onboarding/pr/pr-list', () => {
|
||||||
|
|
||||||
<br />
|
<br />
|
||||||
|
|
||||||
🚸 Branch creation will be limited to maximum 1 per hour, so it doesn't swamp any CI resources or spam the project. See docs for \`prhourlylimit\` for details.
|
🚸 Branch creation will be limited to maximum 1 per hour, so it doesn't swamp any CI resources or overwhelm the project. See docs for \`prhourlylimit\` for details.
|
||||||
|
|
||||||
"
|
"
|
||||||
`);
|
`);
|
||||||
|
|
|
@ -70,7 +70,7 @@ export function getPrList(
|
||||||
prHourlyLimit < branches.length
|
prHourlyLimit < branches.length
|
||||||
) {
|
) {
|
||||||
prDesc += emojify(
|
prDesc += emojify(
|
||||||
`<br />\n\n:children_crossing: Branch creation will be limited to maximum ${prHourlyLimit} per hour, so it doesn't swamp any CI resources or spam the project. See docs for \`prhourlylimit\` for details.\n\n`
|
`<br />\n\n:children_crossing: Branch creation will be limited to maximum ${prHourlyLimit} per hour, so it doesn't swamp any CI resources or overwhelm the project. See docs for \`prhourlylimit\` for details.\n\n`
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
return prDesc;
|
return prDesc;
|
||||||
|
|
Loading…
Reference in a new issue