-
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
Jordan Hackworth
authored
Jan 21, 2022
1 parent
bffabb7
commit 4c9d994
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 @@ | ||
################################# | ||
# GitHub Dependabot Config info # | ||
################################# | ||
version: 2 | ||
updates: | ||
- package-ecosystem: github-actions | ||
directory: "/" | ||
schedule: | ||
interval: daily | ||
open-pull-requests-limit: 10 | ||
|
||
# Maintain dependencies for docker | ||
- package-ecosystem: "docker" | ||
directory: "/" | ||
schedule: | ||
interval: "daily" | ||
open-pull-requests-limit: 10 | ||
|
||
# Maintain dependencies for python with pip | ||
- package-ecosystem: "pip" | ||
directory: "/dependencies" | ||
schedule: | ||
interval: "daily" | ||
open-pull-requests-limit: 10 | ||
|
||
# Maintain dependencies for js with npm | ||
- package-ecosystem: "npm" | ||
directory: "/dependencies" | ||
schedule: | ||
interval: "daily" | ||
open-pull-requests-limit: 10 | ||
|
||
# Maintain dependencies for ruby with bundler | ||
- package-ecosystem: "bundler" | ||
directory: "/dependencies" | ||
schedule: | ||
interval: "daily" | ||
open-pull-requests-limit: 10 |