Skip to content

Commit

Permalink
add script for creating dependabot.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
davidspek committed Jan 20, 2021
1 parent b0c97e1 commit 27b888f
Show file tree
Hide file tree
Showing 4 changed files with 545 additions and 7 deletions.
25 changes: 25 additions & 0 deletions .github/base_dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
version: 2
updates:
- package-ecosystem: "npm"
directory: "/"
schedule:
interval: "daily"
# Disable version updates for npm dependencies
open-pull-requests-limit: 10
- package-ecosystem: "pip"
directory: "/"
schedule:
interval: "daily"
# Allow up to 10 open pull requests for pip dependencies
open-pull-requests-limit: 10
- package-ecosystem: "gomod"
directory: "/"
schedule:
interval: "daily"
# Allow up to 10 open pull requests for pip dependencies
open-pull-requests-limit: 10
- package-ecosystem: docker
directory: "/"
schedule:
interval: daily
open-pull-requests-limit: 10
6 changes: 6 additions & 0 deletions .github/depend_template.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
package-ecosystem: ""
directory: "/"
schedule:
interval: "daily"
# Disable version updates for npm dependencies
open-pull-requests-limit: 10
Loading

0 comments on commit 27b888f

Please sign in to comment.