Skip to content

Commit

Permalink
Add dependabot (#339)
Browse files Browse the repository at this point in the history
Updates Elixir, JS, and GHA dependencies weekly.

Only opens 3 PRs max per package ecosystem, can be tuned to whatever feels good/right.
  • Loading branch information
akasprzok committed Feb 23, 2024
1 parent caba5d3 commit 8a582d9
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# Automatically opens PRs for dependency updates.
# Can be turned on and off for org or repository via "Code security and analysis" tab .
# See https://docs.github.com/en/code-security/dependabot/dependabot-alerts/configuring-dependabot-alerts
version: 2
updates:
# Updates Elixir dependencies
- package-ecosystem: mix
directory: server/
# Checks every Monday morning at 5am Pacific.
schedule: &weekly_schedule
interval: weekly
day: monday
time: 05:00
timezone: America/Los_Angeles
# Will only open a maximum of 3 PRs
open-pull-requests-limit: 3
# Updates GHA dependencies
- package-ecosystem: github-actions
directory: /
schedule: *weekly_schedule
open-pull-requests-limit: 3
# Updates JavaScript dependencies
- package-ecosystem: npm
directory: /ui
schedule: *weekly_schedule
open-pull-requests-limit: 3

0 comments on commit 8a582d9

Please sign in to comment.