Skip to content

Commit

Permalink
Update dependabot rules to include next branch and npm (#308)
Browse files Browse the repository at this point in the history
  • Loading branch information
sdlaver authored Oct 23, 2024
1 parent 879331c commit c736846
Showing 1 changed file with 52 additions and 2 deletions.
54 changes: 52 additions & 2 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -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"

0 comments on commit c736846

Please sign in to comment.