diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 1a162c8b..a2a6e848 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