mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-12 06:56:24 +00:00
parent
268c86b0ff
commit
910ce2076a
1 changed files with 4 additions and 1 deletions
|
@ -129,7 +129,10 @@ async function processBranch(branchConfig, prHourlyLimitReached, packageFiles) {
|
||||||
branchPr.title && branchPr.title.startsWith('rebase!');
|
branchPr.title && branchPr.title.startsWith('rebase!');
|
||||||
const labelRebase =
|
const labelRebase =
|
||||||
branchPr.labels && branchPr.labels.includes(config.rebaseLabel);
|
branchPr.labels && branchPr.labels.includes(config.rebaseLabel);
|
||||||
if (titleRebase || labelRebase) {
|
const prRebaseChecked =
|
||||||
|
branchPr.body &&
|
||||||
|
branchPr.body.includes(`- [x] <!-- ${appSlug}-rebase -->`);
|
||||||
|
if (prRebaseChecked || titleRebase || labelRebase) {
|
||||||
// istanbul ignore if
|
// istanbul ignore if
|
||||||
if (config.dryRun) {
|
if (config.dryRun) {
|
||||||
logger.info(
|
logger.info(
|
||||||
|
|
Loading…
Reference in a new issue