Skip to content

Commit

Permalink
Merge pull request #78 from joshharrison626/master
Browse files Browse the repository at this point in the history
Adds renovate configuration to repo - hacktoberfest
  • Loading branch information
skodamarthi authored Oct 23, 2020
2 parents 861976c + 482ecde commit f841541
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 1 deletion.
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
1. Codeowners will automatically be requested to review, so no need to tag on your PR

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
}
]
}

0 comments on commit f841541

Please sign in to comment.