Skip to content

Commit

Permalink
Create dependabot.yml (forem#20968)
Browse files Browse the repository at this point in the history
  • Loading branch information
benhalpern authored May 21, 2024
1 parent 3b71d65 commit e799f2d
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
version: 2
updates:
# RubyGems dependency updates (typically for Rails and other Ruby gems)
- package-ecosystem: "bundler" # for RubyGems
directory: "/" # path to the directory containing the Gemfile
schedule:
interval: "weekly" # frequency of update checks
day: "monday" # specify the day to check for updates
time: "04:00" # specify the time of day (in UTC) to check for updates
open-pull-requests-limit: 5 # limit the number of open pull requests
labels:
- "dependencies" # label to assign to pull requests
- "ruby"
milestone: 1 # ID of the milestone to assign to the pull requests if needed

# Yarn dependency updates (for JavaScript packages)
- package-ecosystem: "yarn" # for Yarn packages
directory: "/" # path to the directory containing the package.json and yarn.lock files
schedule:
interval: "weekly"
day: "tuesday"
time: "04:00"
open-pull-requests-limit: 5
labels:
- "dependencies"
- "javascript"
milestone: 1

# Configuration for GitHub Actions
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "monthly"
day: "first" # first day of the month
time: "04:00"
labels:
- "dependencies"
- "github-actions"

0 comments on commit e799f2d

Please sign in to comment.