-
Notifications
You must be signed in to change notification settings - Fork 706
Renovate: skip commit upgrades of otel-go #7405
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
base: main
Are you sure you want to change the base?
Changes from 4 commits
a43aa98
177fcb9
2d43ebc
e291f6c
8b2aa1b
dfcf661
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -4,32 +4,47 @@ | |
| "config:recommended" | ||
| ], | ||
| "ignorePaths": [], | ||
| "labels": ["Skip Changelog", "dependencies"], | ||
| "labels": [ | ||
| "Skip Changelog", | ||
| "dependencies" | ||
| ], | ||
|
||
| "separateMajorMinor": true, | ||
| "postUpdateOptions" : [ | ||
| "postUpdateOptions": [ | ||
| "gomodTidy" | ||
| ], | ||
| "packageRules": [ | ||
| { | ||
| "matchManagers": ["gomod"], | ||
| "matchDepTypes": ["indirect"], | ||
| "matchManagers": [ | ||
| "gomod" | ||
| ], | ||
| "matchDepTypes": [ | ||
| "indirect" | ||
| ], | ||
| "enabled": true | ||
| }, | ||
| { | ||
| "matchPackageNames": ["go.opentelemetry.io/build-tools/**"], | ||
| "matchPackageNames": [ | ||
| "go.opentelemetry.io/build-tools/**" | ||
| ], | ||
| "groupName": "build-tools" | ||
| }, | ||
| { | ||
| "matchPackageNames": ["google.golang.org/genproto/googleapis/**"], | ||
| "matchPackageNames": [ | ||
| "google.golang.org/genproto/googleapis/**" | ||
| ], | ||
| "groupName": "googleapis" | ||
| }, | ||
| { | ||
| "matchPackageNames": ["golang.org/x/**"], | ||
| "matchPackageNames": [ | ||
| "golang.org/x/**" | ||
| ], | ||
| "groupName": "golang.org/x" | ||
| }, | ||
| { | ||
| "matchPackageNames": ["go.opentelemetry.io/otel/**"], | ||
| "enabled": false | ||
| "matchPackageNames": [ | ||
| "go.opentelemetry.io/otel/**" | ||
| ], | ||
| "allowedVersions": "/^v\\d+\\.\\d+\\.\\d+$/" | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Have this been tested?
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I tested with a Go script to verify that it correctly identifies semantic versions vs pseudo-versions |
||
| } | ||
| ] | ||
| } | ||
| } | ||
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.
This won't need a changelog entry.