chore: reword branch creation limit message on onboarding PR (#19391)

This commit is contained in:
HonkingGoose 2022-12-14 18:59:08 +01:00 committed by GitHub
parent e5913d4587
commit 996d3b19b6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -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.
" "
`); `);

View file

@ -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;