diff --git a/.github/workflows/dependabot.yaml b/.github/workflows/dependabot.yaml new file mode 100644 index 000000000..1ab9c5f88 --- /dev/null +++ b/.github/workflows/dependabot.yaml @@ -0,0 +1,33 @@ +version: 2 +updates: + # NuGet + - package-ecosystem: "nuget" # See documentation for possible values + directory: "/" # Location of package manifests + schedule: + interval: "weekly" + day: "monday" + open-pull-requests-limit: 5 + rebase-strategy: "auto" + labels: + - "dependencies" + commit-message: + - prefix: "deps(nuget)" + groups: + nuget-patch-and-minor: + patterns: + - "*" + update-types: + - "minor" + - "patch" + # GitHub Actions + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "weekly" + day: "monday" + open-pull-requests-limit: 5 + rebase-strategy: "auto" + labels: + - "dependencies" + commit-message: + prefix: "deps(gh-actions)" \ No newline at end of file