From 045a617077cab25497606014263502471cd6a5ee Mon Sep 17 00:00:00 2001 From: linkyone Date: Wed, 16 Mar 2022 00:49:15 +0900 Subject: [PATCH] Create dependabot.yml --- .github/dependabot.yml | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..d9dc4a6 --- /dev/null +++ b/.github/dependabot.yml @@ -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