forked from forem/forem
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdependabot.yml
38 lines (36 loc) · 1.26 KB
/
dependabot.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
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"