Skip to content

Commit

Permalink
Improve Dependabot PR Naming and skip backport
Browse files Browse the repository at this point in the history
  • Loading branch information
romulets committed Nov 13, 2024
1 parent ebbe2c0 commit 3a980f6
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,12 @@

version: 2
updates:
# Maintain dependencies for go.mod
# Maintain dependencies for go.mod main branch
- package-ecosystem: "gomod"
directory: "/"
commit-message:
include: scope
prefix: "main"
groups:
azure:
patterns:
Expand All @@ -27,6 +30,7 @@ updates:
- "github.com/aquasecurity/*"
labels:
- "dependency"
- "backport-skip"
- "go"
open-pull-requests-limit: 2
# elastic/beats is using v7 in their go.mod, leading to automatic updates not working. Manual update is needed with
Expand All @@ -36,9 +40,13 @@ updates:
schedule:
interval: "monthly"

# Maintain dependencies for go.mod 8.x branch
- package-ecosystem: "gomod"
target-branch: "8.x"
directory: "/"
commit-message:
include: scope
prefix: "8.x"
groups:
azure:
patterns:
Expand All @@ -61,6 +69,7 @@ updates:
- "github.com/aquasecurity/*"
labels:
- "dependency"
- "backport-skip"
- "go"
open-pull-requests-limit: 2
# elastic/beats is using v7 in their go.mod, leading to automatic updates not working. Manual update is needed with
Expand Down

0 comments on commit 3a980f6

Please sign in to comment.