-
Notifications
You must be signed in to change notification settings - Fork 0
dependabotのgroupのpattern修正 #1402
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
Conversation
|
Migrate lint ✅ Lint output |
PR Reviewer Guide 🔍Here are some key observations to aid the review process:
|
|
Migrate lint ✅ Lint output |
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #1402 +/- ##
=======================================
Coverage 50.16% 50.16%
=======================================
Files 136 136
Lines 11874 11874
=======================================
Hits 5956 5956
Misses 5614 5614
Partials 304 304 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull Request Overview
This PR fixes Dependabot grouping patterns by converting regex patterns to wildcard format for more stable dependency update grouping.
- Converts regex patterns (^prefix) to wildcard patterns (*suffix) for dependency groups
- Updates AWS SDK, golang.org/x, golang, and Atlas dependency group patterns
- Improves Dependabot configuration reliability by using simpler wildcard matching
Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.
| golang: | ||
| patterns: | ||
| - "^golang" | ||
| - "golang" |
Copilot
AI
Oct 14, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The golang pattern should use wildcard format 'golang*' to match the intended behavior described in the PR. Currently it will only match exact 'golang' packages, not golang-prefixed packages.
| - "golang" | |
| - "golang*" |
PR Type
Enhancement, Configuration changes
Description
Dependabotグループのパターン指定を修正
正規表現からワイルドカード形式へ変更
Go/SDK/Atlasの依存更新グループ安定化
Diagram Walkthrough
File Walkthrough
dependabot.yaml
Dependabotグルーピングのpatternをワイルドカード化.github/dependabot.yaml