Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adds renovate configuration to repo - hacktoberfest #78

Merged
merged 7 commits into from
Oct 23, 2020
Merged
Show file tree
Hide file tree
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
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,10 @@ We do not allow contributors to claim issues. If you find something interesting
1. Install dependencies locally by running `yarn` or `npm install`
1. Make your changes
1. Make sure it builds using `yarn build` or `npm run build`
1. Run the tests (you added tests, right?) with `npm test` or `yarn tests`
1. Run the tests (you added tests, right?) with `npm test` or `yarn test`
1. Test your changes in your consuming code or using our demo project: Run [`yarn link`](https://classic.yarnpkg.com/en/docs/cli/link) or [`npm link`](https://docs.npmjs.com/cli/link)
1. Ensure the code coverage is the same or higher than before your changes
1. Ensure commit message is properly formatted: `type(subject): input`. Eg: `chore(prettier): update prettier to 2.x`
1. Create a PR to the `master` branch

## How contributors get added to the README
Expand Down
21 changes: 21 additions & 0 deletions renovate.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
"semanticCommits": true,
"semanticCommitType": "chore",
"semanticCommitScope": "deps",
"packageRules": [
{
"packagePatterns": ["*"],
"groupName": "external (minor, patch)",
"updateTypes": ["patch", "minor"],
"automerge": false,
"enabled": true
},
{
"packagePatterns": ["*"],
"groupName": "external",
"updateTypes": ["major"],
"automerge": false,
"enabled": true
}
]
}