From c736846fd50a97852196f2558ebd40160fa39a4d Mon Sep 17 00:00:00 2001 From: sdlaver <103003665+sdlaver@users.noreply.github.com> Date: Wed, 23 Oct 2024 16:23:24 -0700 Subject: [PATCH] Update dependabot rules to include next branch and npm (#308) --- .github/dependabot.yml | 54 ++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 52 insertions(+), 2 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 1a162c8..a2a6e84 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -1,13 +1,63 @@ version: 2 updates: + ############################################################################## + # main branch + ############################################################################## + + - package-ecosystem: "github-actions" + # Workflow files stored in the default location of `.github/workflows` + directories: + - "/" + schedule: + interval: "weekly" + + - package-ecosystem: "gradle" + # Files stored in the default project in the root of this repo + directories: + - "/" + schedule: + interval: "weekly" + + - package-ecosystem: "npm" + # Files stored in the `js/` project + directories: + - "/js" + schedule: + interval: "weekly" + + ############################################################################## + # next branch + ############################################################################## + - package-ecosystem: "github-actions" # Workflow files stored in the default location of `.github/workflows` - directory: "/" + directories: + - "/" schedule: interval: "weekly" + target-branch: "next" + labels: + - "dependencies" + - "next" - package-ecosystem: "gradle" # Files stored in the default project in the root of this repo - directory: "/" + directories: + - "/" + schedule: + interval: "weekly" + target-branch: "next" + labels: + - "dependencies" + - "next" + + - package-ecosystem: "npm" + # Files stored in the `js/` project + directories: + - "/js" schedule: interval: "weekly" + target-branch: "next" + labels: + - "dependencies" + - "next" \ No newline at end of file