Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: improve stabilityDays documentation #9792

Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
13 changes: 9 additions & 4 deletions docs/usage/configuration-options.md
Expand Up @@ -2166,11 +2166,16 @@ If this setting is true then you would get one PR for webpack@v2 and one for web

## stabilityDays

If this is configured to a non-zero value, and an update has a release date/timestamp available, then Renovate will check if the configured "stability days" have elapsed.
If the days since the release is less than the configured stability days then a "pending" status check will be added to the branch.
If enough days have passed then a passing status check will be added.
If this is set to a non-zero value, _and_ an update provides a release timestamp header, then Renovate will check if the "stability days" have passed.
HonkingGoose marked this conversation as resolved.
Show resolved Hide resolved

There are a couple of uses for this:
If the amount of days since the release is less than the set `stabilityDays` a "pending" status check is added to the branch.
If enough days have passed then the "pending status is removed, and a "passing" status check is added.
HonkingGoose marked this conversation as resolved.
Show resolved Hide resolved

Some datasources do not provide a release timestamp, and other datasources are not supported at all by Renovate.
HonkingGoose marked this conversation as resolved.
Show resolved Hide resolved

Maven users: you cannot use `stabilityDays` if a Maven source returns unreliable `last-modified` headers.

There are a couple of uses for `stabilityDays`:

<!-- markdownlint-disable MD001 -->

Expand Down