Skip to content

Commit

Permalink
chore(deps): ignore google/go-github package updates (#2465)
Browse files Browse the repository at this point in the history
"properly" ignore `github.com/google/go-github` dependency updates via renovate since they require code changes (import path updates). Since the module name is changed with each release, we cannot `ignoreDeps` a single module, and [`ignoreDeps` does not support pattern matching, but has a workaround](https://docs.renovatebot.com/configuration-options/#ignoredeps), which I've implemented here.
  • Loading branch information
noahdietz committed Mar 11, 2024
1 parent c3a2f34 commit cc19990
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/renovate.json
Expand Up @@ -12,8 +12,13 @@
"commitMessageAction": "update",
"groupName": "all",
"ignoreDeps": [
"google.golang.org/appengine",
"github.com/google/go-github"
"google.golang.org/appengine"
],
"packageRules": [
{
"matchPackageNames": ["^github.com/google/go-github/v"],
"enabled": false
}
],
"force": {
"constraints": {
Expand Down

0 comments on commit cc19990

Please sign in to comment.