forked from forem/forem
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3b71d65
commit e799f2d
Showing
1 changed file
with
38 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" |