Skip to content

Commit

Permalink
Ignore commit upgrades for otel-go in renovate (#6144)
Browse files Browse the repository at this point in the history
We often have unstable packages relying on a commit of otel-go
temporarily, to spee up development.
That gives us very frequent renovate PRs (for every commit in otel-go),
that we don't really need.

See #6142

This PR proposes to get renovate to only upgrade otel-go for releases
matching semantic versions, so we don't upgrade every commit anymore.

---------

Co-authored-by: Robert Pająk <[email protected]>
  • Loading branch information
dmathieu and pellared authored Oct 2, 2024
1 parent a80077a commit 0f2d426
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,10 @@
{
"matchPackageNames": ["google.golang.org/genproto/googleapis/**"],
"groupName": "googleapis"
},
{
"matchPackageNames": ["go.opentelemetry.io/otel/**"],
"allowedVersions": "/^v[0-9]+\\.[0-9]+\\.[0-9]+/"
}
]
}

0 comments on commit 0f2d426

Please sign in to comment.