https://github.com/ridedott/renovate-config
Ridedott's base config for Renovate[bot].
https://github.com/ridedott/renovate-config
non-critical swe terraformed
Last synced: 4 months ago
JSON representation
Ridedott's base config for Renovate[bot].
- Host: GitHub
- URL: https://github.com/ridedott/renovate-config
- Owner: ridedott
- Created: 2019-06-26T11:00:34.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2026-01-19T16:26:00.000Z (4 months ago)
- Last Synced: 2026-01-19T22:47:02.968Z (4 months ago)
- Topics: non-critical, swe, terraformed
- Language: Shell
- Homepage:
- Size: 255 KB
- Stars: 0
- Watchers: 21
- Forks: 0
- Open Issues: 12
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# renovate-config
[](https://github.com/prettier/prettier)
[](http://commitizen.github.io/cz-cli/)
Ridedott's base config for Renovate[bot].
## Getting Started
The project has no runtime and acts as a shareable base config. It can only be
used by other projects implementing Renovate[bot].
### Prerequisites
Minimal requirements to set up the project:
- [Node.js](https://nodejs.org/en) v10, installation instructions can be found
on the official website, a recommended installation option is to use
[Node Version Manager](https://github.com/creationix/nvm#readme). It can be
installed in a
[few commands](https://nodejs.org/en/download/package-manager/#nvm).
- A package manager like [Yarn](https://yarnpkg.com) or
[npm](https://www.npmjs.com). All instructions in the documentation will
follow the npm syntax.
- Optionally a [Git](https://git-scm.com) client.
### Installing
Start by cloning the repository:
```bash
git clone git@github.com:ridedott/renovate-config.git
```
In case you don't have a git client, you can get the latest version directly by
using
[this link](https://github.com/ridedott/renovate-config/archive/master.zip) and
extracting the downloaded archive.
Go the the right directory and install dependencies:
```bash
cd renovate-config
nvm use
npm install
```
That's it! You can now go to the next step.
## Tests
This repository does not contain any source code, just the configuration, so no
tests are present.
### Formatting
This project uses [Prettier](https://prettier.io) to automate formatting. All
supported files are being reformatted in a precommit hook. You can also use one
of the two scripts to validate and optionally fix all of the files:
```bash
npm run format
npm run format:fix
```
## Publishing
Publishing is handled in an automated way and must not be performed manually.
Each commit to the master branch is automatically deployed to the NPM registry
with a version specified in `package.json`. All other commits are published as
pre-releases.
## Usage
Add a Renovate configuration to your project and use
`"extends": ["github>ridedott/renovate-config"]` to include the options defined
as defaults in the **./default.json** configuration:
If you are working in a TypeScript project we recommend using the `typescript`
preset by extending from `github>ridedott/renovate-config:typescript` instead.
```json
{
"extends": ["github>ridedott/renovate-config:typescript"],
"packageRules": [
{
"enabled": false,
"packageNames": ["@types/node"],
"updateTypes": ["major"]
}
]
}
```
We use the merge-me github action to auto merge PRs and the hosted renovate bot
which runs 24/7 we need to use the `schedule` configuration to ensure that
renovate only runs between the desired hours. Not having this configuration
allows renovate bot to rebase PRs outside the specified hours which potentially
leads to the CI becoming green and merge-me auto merging the PR. Which led to
outages of breaking runtimes that we didn't catch.
## Contributing
See [CONTRIBUTING.md](./CONTRIBUTING.md).
## Built with
### Automation
- [Google Cloud Build](https://cloud.google.com/cloud-build/)
## Versioning
This project adheres to [Semantic Versioning](http://semver.org) v2.