skipping PR creation after stabilityDays #8357
Unanswered
koba04
asked this question in
Request Help
Replies: 1 comment 10 replies
-
enable dependencyDashboard and use the checkbox there to force pr creation |
Beta Was this translation helpful? Give feedback.
10 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Renovate doesn't create PRs because of
Branch is 265 hours old - skipping PR creation
.But the branch is enough old to be created a PR. Why does Renovate skip PR creation?
This is one of the branches that a PR isn't created.
https://github.com/kintone/js-sdk/tree/renovate/patch-babel-monorepo.
The branch is very old and stabilityDays has been elapsed, which is 3days from the setting.
https://github.com/cybozu/renovate-config/blob/master/renovate.json#L16
In this if block, I guess
config.stabilityStatus !== BranchStatus.yellow
becomestrue
because the following condition (elapsedHours < config.prNotPendingHours
) would befalse
because it's an old branch.renovate/lib/workers/pr/index.ts
Lines 219 to 228 in 746d170
I guess
config.stabilityStatus
isgreen
, but I'm not sure what it means.The status of the branch is yellow because this branch was created before we run GitHub Actions for branches Renovate creates. Previously we only run GitHub Actions for pull requests rather than branches, so branches are always in the pending status until a PR has been created. This has been fixed in kintone/js-sdk#608
What should I do for Renovate creates a PR for the branch?
Here is the our
renovate.json
https://github.com/cybozu/renovate-config/blob/master/renovate.json
The following is a log for one of our packages.
Beta Was this translation helpful? Give feedback.
All reactions