https://github.com/seek-oss/renovate-config-seek
Shareable Renovate config for SEEK
https://github.com/seek-oss/renovate-config-seek
front-end renovate renovate-config
Last synced: 3 months ago
JSON representation
Shareable Renovate config for SEEK
- Host: GitHub
- URL: https://github.com/seek-oss/renovate-config-seek
- Owner: seek-oss
- License: mit
- Created: 2018-01-07T22:05:45.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2024-12-17T21:27:04.000Z (10 months ago)
- Last Synced: 2025-07-02T04:07:26.453Z (3 months ago)
- Topics: front-end, renovate, renovate-config
- Language: JavaScript
- Homepage: https://renovateapp.com
- Size: 207 KB
- Stars: 7
- Watchers: 11
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[](http://travis-ci.org/seek-oss/renovate-config-seek) [](https://www.npmjs.com/package/renovate-config-seek) [](https://github.com/semantic-release/semantic-release) [](http://commitizen.github.io/cz-cli/)
# renovate-config-seek
Shareable [Renovate](https://renovateapp.com) config for [SEEK](https://github.com/seek-oss).This preset extends `config:base`, so all of the usual Renovate defaults are applied, but it also provides a couple of key benefits:
- By default, to reduce noise, only SEEK packages are automatically kept up to date, generating pull requests whenever new versions are published.
- Commit messages and pull request titles are specially formatted to follow our [commitlint-config-seek](https://github.com/seek-oss/commitlint-config-seek) conventions.## Usage
You can set this up [a few different ways](https://renovateapp.com/docs/getting-started/configure-renovate#configuration-location), but it's recommended that you add a `renovate.json` file to your project with the following contents:```js
{
"extends": [
"seek"
]
}
```**By default, this preset disables automatic package updates for all non-SEEK packages.** If you want to reintroduce standard Renovate behaviour for other packages, you'll need to use the ["enabled" option](https://renovatebot.com/docs/configuration-options/#enabled).
For example:
```js
{
"extends": [
"seek"
],
"packageRules": [
{
"packageNames": ["react"],
"enabled": true
}
]
}
```## License
MIT.