Skip to content

Commit

Permalink
fix(dependabot): update dependabot config
Browse files Browse the repository at this point in the history
Signed-off-by: Lachlan Heywood <[email protected]>
  • Loading branch information
lachieh committed Jan 13, 2025
1 parent b88388c commit f9ab1c3
Showing 1 changed file with 52 additions and 10 deletions.
62 changes: 52 additions & 10 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,16 @@
version: 2
updates:
# GitHub Actions/Workflows
- package-ecosystem: 'github-actions'
directory: '/.github'
schedule:
interval: 'daily'

# Published Packages
- package-ecosystem: 'npm'
directory: '/'
directories:
- '/packages/lattice-client-core'
- '/packages/lattice-client-react'
schedule:
interval: 'weekly'
day: 'monday'
Expand All @@ -18,14 +27,47 @@ updates:
update-types:
- minor
- patch
- package-ecosystem: 'github-actions'
directory: '/.github'

# Internal Packages
- package-ecosystem: 'npm'
directories:
- '/packages/eslint-config'
- '/packages/prettier-config'
- '/packages/tsconfig'
schedule:
interval: 'daily'
interval: 'weekly'
day: 'monday'
time: '09:00'
timezone: 'America/New_York'
groups:
workflows:
patterns:
- '.github/workflows/*.yml'
actions:
patterns:
- '.github/actions/**/*.yml'
dev-dependencies:
dependency-type: development
update-types:
- minor
- patch
prod-dependencies:
dependency-type: production
update-types:
- minor
- patch

# Apps
# - washboard-ui
- package-ecosystem: 'npm'
directory: '/apps/washboard'
schedule:
interval: 'weekly'
day: 'monday'
time: '09:00'
timezone: 'America/New_York'
groups:
dev-dependencies:
dependency-type: development
update-types:
- minor
- patch
prod-dependencies:
dependency-type: production
update-types:
- minor
- patch

0 comments on commit f9ab1c3

Please sign in to comment.