Conversation
Signed-off-by: Alessandro Yuichi Okimoto <yuichijpn@gmail.com>
There was a problem hiding this comment.
Pull request overview
This PR adds a Renovate configuration file to automate dependency updates for the repository. The configuration establishes policies for different types of dependencies, including GitHub Actions, Swift packages, and development tools, with rules for grouping updates, controlling automerge behavior, and managing major version updates.
Changes:
- Configures Renovate with base settings including Asia/Tokyo timezone and monthly scheduling
- Defines package-specific rules to control update behavior for GitHub Actions, test dependencies, and Swift packages
- Establishes grouping strategies for different dependency types with appropriate commit message prefixes
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
duyhungtnn
reviewed
Jan 20, 2026
Comment on lines
+52
to
+98
| "description": "Test dependencies - ignore major updates", | ||
| "matchPackagePatterns": ["Quick", "Nimble", "Swifter", "OHHTTPStubs", "Mocker"], | ||
| "matchManagers": ["swift"], | ||
| "matchUpdateTypes": ["major"], | ||
| "enabled": false | ||
| }, | ||
| { | ||
| "description": "Test dependencies - group patch and minor updates", | ||
| "groupName": "test-dependencies", | ||
| "groupSlug": "test-deps", | ||
| "commitMessagePrefix": "test(deps):", | ||
| "commitMessageTopic": "test-dependencies group", | ||
| "matchPackagePatterns": ["Quick", "Nimble", "Swifter", "OHHTTPStubs", "Mocker"], | ||
| "matchManagers": ["swift"], | ||
| "matchUpdateTypes": ["patch", "minor"], | ||
| "automerge": true | ||
| }, | ||
| { | ||
| "description": "Swift Package Manager - group patch updates (auto-mergeable)", | ||
| "groupName": "swift-patch", | ||
| "groupSlug": "swift-patch", | ||
| "commitMessageTopic": "swift-patch group", | ||
| "matchManagers": ["swift"], | ||
| "excludePackagePatterns": ["Quick", "Nimble", "Swifter", "OHHTTPStubs", "Mocker"], | ||
| "matchUpdateTypes": ["patch"], | ||
| "automerge": true | ||
| }, | ||
| { | ||
| "description": "Swift Package Manager - group minor updates (auto-mergeable)", | ||
| "groupName": "swift-minor", | ||
| "groupSlug": "swift-minor", | ||
| "commitMessageTopic": "swift-minor group", | ||
| "matchManagers": ["swift"], | ||
| "excludePackagePatterns": ["Quick", "Nimble", "Swifter", "OHHTTPStubs", "Mocker"], | ||
| "matchUpdateTypes": ["minor"], | ||
| "automerge": true | ||
| }, | ||
| { | ||
| "description": "Swift Package Manager - group major updates (REQUIRES REVIEW)", | ||
| "groupName": "swift-major", | ||
| "groupSlug": "swift-major", | ||
| "commitMessageTopic": "swift-major group", | ||
| "matchManagers": ["swift"], | ||
| "excludePackagePatterns": ["Quick", "Nimble", "Swifter", "OHHTTPStubs", "Mocker"], | ||
| "matchUpdateTypes": ["major"], | ||
| "automerge": false | ||
| } |
Collaborator
There was a problem hiding this comment.
I think we can remove this because Our iOS SDK has no third-party dependencies.
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
No description provided.