From 596aca28ff272ad975e2b004bf6a0953bd408690 Mon Sep 17 00:00:00 2001 From: Frederic BIDON Date: Mon, 4 Mar 2024 07:50:50 +0100 Subject: [PATCH] fix(ci): remove dependency-type from dependabot groups dependency-type is irrelevant in the gomod ecosystem. This setting prevented some updates to auto-merge as expected. Signed-off-by: Frederic BIDON --- .github/dependabot.yaml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/.github/dependabot.yaml b/.github/dependabot.yaml index 976af1b..7dc7009 100644 --- a/.github/dependabot.yaml +++ b/.github/dependabot.yaml @@ -34,22 +34,18 @@ updates: open-pull-requests-limit: 4 groups: development-dependencies: - dependency-type: development patterns: - "github.com/stretchr/testify" golang.org-dependencies: - dependency-type: production patterns: - "golang.org/*" go-openapi-dependencies: - dependency-type: production patterns: - "github.com/go-openapi/*" other-dependencies: - dependency-type: production exclude-patterns: - "github.com/go-openapi/*" - "github.com/stretchr/testify"