Renovate is an open source bot allowing automated dependency updates, multi-platform and multi-language. If you have any questions about bot configuration, or have problems understanding the documentation of the tool, ask your question using this tag.
Questions tagged [renovate]
75 questions
0
votes
0 answers
Bitbucket: Automerge develop branch into other branch after commit
In Bitbucket, is there a way to automatically merge the develop branch into a specific branch, after a commit on develop has happened?
UseCase: we have a package-updates branch which is used for renovate to update and test newer versions of the used…

NiHiLiST
- 1
0
votes
0 answers
Renovate Bot Specificity
I'm a bit confused about RenovateBot's specificity. We have a Expo/ReactNative app where we don't want minor updates to the react* or expo* packages because of the way RN does numbering. However, we want to do minor updates for other packages that…

orbiteleven
- 951
- 1
- 11
- 21
0
votes
1 answer
Renovate config path
I need to dynamically write the config for the renovate bot. As it's being run in AWS Lambda Docker, the filesystem is locked, bar /tmp/ so I need to wrote it there.
How do I give renovate a path to a custom config file?
An alternative would be for…

BanksySan
- 27,362
- 33
- 117
- 216
0
votes
1 answer
Different packageRules for release and prelease versions
Is there a way to configure renovate with packageRules, so that I get a MR with automerge disables for pre-release versions, like v1.0.0-alpha.1 and MR with automerge enabled for patch versions, liken v1.0.0.
I have enabled unstableVersion support…

Jehof
- 34,674
- 10
- 123
- 155
0
votes
1 answer
How to configure renovate to switch from gitlab-release to git-tags
My goal is to update all includes in my gitlab-ci.yml files. By default without any custom configuration renovate create MR with an include update based on gitlab-release.
But today, I have some includes only based on tag and there isn't any release…

Cédric OLIVIER
- 53
- 5
0
votes
1 answer
Renovate: exclude or regex repositories?
Goal: renovate repositories, regex include/exclude
Using renovate repositories, is it possible to regex to include/exclude?
For example, this explicitly two repositories:
repositories: ["ACT/act-qa", "ACT/act-integration-apps"],
But this does not…

Jeff
- 1,917
- 1
- 25
- 43
0
votes
1 answer
Renovate is not detecting helm charts name or version
This is the value in my helm Chart.yaml
apiVersion: v2
name: luna-lovegood
type: application
version: 0.1.0
dependencies:
- name: application
version: 0.8
repository: https://luna-lovegood.jfrog.io/artifactory/helm
Whenever I run…

Surya
- 2,429
- 1
- 21
- 42
0
votes
2 answers
Reopen autoclosed PRs - Renovate
Renovate autocloses PRs that it created when there are config changes in renovate.json file. Is there any way for renovate to reopen those PRs?
There was a PR 'X' that renovate created, which didn't pass some of the checks. some configs in…

Mish Nia
- 31
- 1
- 7
0
votes
1 answer
Helm: How to pin version & make it manageable by Renovate on GitHub
Currently we install Traefik using Helm as described in the docs from it's chart at https://github.com/traefik/traefik-helm-chart. This
... chart bootstraps Traefik version 2 as a Kubernetes ingress controller, using Custom Resources IngressRoute:…

jonashackt
- 12,022
- 5
- 67
- 124
0
votes
2 answers
How to run Renovate inside a Ubuntu 20.04 Docker container?
I want to run Renovate inside a a Ubuntu 20.04 docker container, but renovate does not seem to work. Here are the step to repdocue my setting:
docker run -it ubuntu:20.04 /bin/bash
apt update
apt upgrade
printf 'y\n1\n\1n' | apt install nodejs
apt…

Vertexwahn
- 7,709
- 6
- 64
- 90
0
votes
2 answers
Using Renovate in Kubernetes like Docker-Compose's Watchtower
While looking for a kubernetes equivalent of the docker-compose watchtower container, I stumbled upon renovate. It seems to be a universal tool to update docker tags, dependencies and more.
They also have an example of how to run the service itself…

yspreen
- 1,759
- 2
- 20
- 44
0
votes
1 answer
Renovate: How to override the default fileMatch for Terraform
We are using Renovate to update our dependencies. Unfortunately the Terraform manager updates the provider versions of modules too. We don't want this as we specify minimum versions.
I know how to exclude whole paths from the Renovate analysis…

Matthias
- 15
- 3
0
votes
1 answer
How to automatically create PRs with Paketo.io/Cloud Native Buildpacks Docker image rebase (CI-Pipeline like GitHub Actions or renovatebot)?
As described in the Cloud Native Buildpack features they add a rebasing capability with
Instant updates of base images without re-building.
In the buildpacks docs the rebase operation of Paketo's pack CLI is described to be executed like…

jonashackt
- 12,022
- 5
- 67
- 124
-1
votes
1 answer
Renovate complains about docker compose
with this config.js
module.exports = {
"automerge": false,
"docker-compose": {"enabled": true},
"dryRun" : "true",
"fileMatch": [
"(^|/)(?:docker-)?compose[^/]*\\.ya?ml$"
],
"extends": ["config:recommended", ":skipStatusChecks"],
…

user3732793
- 1,699
- 4
- 24
- 53
-1
votes
1 answer
How to automatically delete every failing Cypress test?
I have inherited a large, out-of-date repo with a set of Cypress e2e tests that cumulatively take multiple days to run. I need to run the tests and then delete the ones that fail. Based on my experiences so far, around 80% of tests fail. So the…

223seneca
- 1,136
- 3
- 19
- 47