Centralized repo for the shared Renovate configs
Note tf-modules.json and go-cantina-band.json present purely for backwards compatibility
Run the renovate in the container
docker run --rm -it \
-e RENOVATE_CONFIG_FILE=renovate.json5 \
-e LOG_LEVEL=debug --entrypoint=bash \
-v `pwd`:/usr/src/app ghcr.io/renovatebot/renovate:fullUseful renovate commands/hints:
-
Validate the config
renovate-config-validator --strict
-
Dry-run renovate
renovate --platform=local --dry-run=full --onboarding=false
-
Dry-run renovate to view packageFiles identified for version bumps
echo "{$(renovate --platform=local --dry-run=full --onboarding=false | awk '/DEBUG: packageFiles with updates/{f=1; next} /DEBUG/{f=0} f')}"
-
Dry-run renovate to view extended branch details that are to be created. The info hints on which PRs are about to be created and what grouping is applied
echo "{$(renovate --platform=local --dry-run=full --onboarding=false | awk '/DEBUG: branches info extended/{f=1; next} /DEBUG/{f=0} f')}"
-
Dry-run renovate to view extended branches summary that are to be created. The info hints on which PRs are about to be created and what grouping is applied
echo "{$(renovate --platform=local --dry-run=full --onboarding=false | awk '/DEBUG: Branch summary/{f=1; next} /DEBUG/{f=0} f')}"