-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: remove the method the function that is no longer in use
- Loading branch information
Showing
2 changed files
with
68 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
{ | ||
"$schema": "https://docs.renovatebot.com/renovate-schema.json", | ||
"extends": ["github>RightCapitalHQ/renovate-config"], | ||
"assignees": ["rainx"], | ||
"reviewers": ["rainx"], | ||
"labels": ["dependencies"], | ||
"automergeType": "pr", | ||
"platformAutomerge": true, | ||
"prCreation": "immediate", | ||
"postUpgradeTasks": { | ||
"commands": [ | ||
"git add --all", | ||
"npx beachball change --no-fetch --no-commit --type patch --message '{{{commitMessage}}}'", | ||
"git reset" | ||
], | ||
"executionMode": "branch", | ||
"fileFilters": ["change/*.json"] | ||
}, | ||
"lockFileMaintenance": { | ||
"automerge": true, | ||
"enabled": true, | ||
"postUpgradeTasks": { | ||
"commands": [ | ||
"git add --all", | ||
"npx beachball change --no-fetch --no-commit --type none --message '{{{commitMessage}}}'", | ||
"git reset" | ||
], | ||
"executionMode": "branch", | ||
"fileFilters": ["change/*.json"] | ||
} | ||
}, | ||
"packageRules": [ | ||
{ | ||
"automerge": false, | ||
"description": "Mark rule and plugin updates as breaking changes", | ||
"matchDepTypes": ["dependencies"], | ||
"matchPackagePrefixes": [ | ||
"@typescript-eslint/", | ||
"eslint-config-", | ||
"eslint-plugin-" | ||
] | ||
}, | ||
{ | ||
"automerge": false, | ||
"description": "Group all RightCapital packages (non-major) together", | ||
"groupName": "RightCapital packages (non-major)", | ||
"groupSlug": "auto-merge-rightcapital-packages-non-major-updates", | ||
"matchUpdateTypes": ["minor", "patch"], | ||
"matchPackagePrefixes": ["@rightcapital"] | ||
}, | ||
{ | ||
"automerge": false, | ||
"description": "Group all DevDependencies together", | ||
"groupName": "DevDependencies", | ||
"groupSlug": "auto-merge-dev-dependencies-updates", | ||
"matchDepTypes": ["devDependencies"], | ||
"postUpgradeTasks": { | ||
"commands": [ | ||
"git add --all", | ||
"npx beachball change --no-fetch --no-commit --type none --message '{{{commitMessage}}}'", | ||
"git reset" | ||
], | ||
"fileFilters": ["change/*.json"], | ||
"executionMode": "branch" | ||
} | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters