Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add dependabot #339

Merged
merged 1 commit into from
Feb 23, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading