Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions src/infra/docs/renovate.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,25 @@ Check that Renovate created the
GitHub issue, so that you can
trigger PRs in the repository by interacting with that issue.

### 4. Troubleshooting Renovate behavior

If you don't understand why Renovate doesn't behave as you expect,
you can run it locally in dry-run mode, and evaluate how it resolves
dependency updates:

```bash

RENOVATE_DRYRUN_TOKEN=$(gh auth token) &&\
docker run --rm -it\
-e RENOVATE_TOKEN="$RENOVATE_DRYRUN_TOKEN"\
-e GITHUB_COM_TOKEN="$RENOVATE_DRYRUN_TOKEN"\
-v /tmp:/tmp\
-v $PWD:/usr/src/app\
renovate/renovate:latest renovate --platform=local --repository-cache=reset --dry-run=lookup
```

If you need more logs, add `-e LOG_LEVEL=debug` to the command above.

## Support

If Renovate isn't working, or you have questions, ask in the
Expand Down
Loading