From 6363a2f396a00777a99c804667164261365c97b8 Mon Sep 17 00:00:00 2001 From: Gaurav Talreja Date: Wed, 10 Jan 2024 11:36:58 +0530 Subject: [PATCH] Add Dependabot Configuration YAML (#1050) --- .github/dependabot.yml | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 00000000..bca13f83 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,31 @@ +# This is the configuration file for Dependabot. You can find configuration information below. +# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates +# Note: Dependabot has a configurable max open PR limit of 5 + +version: 2 +updates: + # Maintain dependencies for Nailgun itself + - package-ecosystem: "pip" + directory: "/" + schedule: + interval: "daily" + labels: + - "CherryPick" + - "dependencies" + - "6.15.z" + - "6.14.z" + - "6.13.z" + - "6.12.z" + + # Maintain dependencies for our GitHub Actions + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "daily" + labels: + - "CherryPick" + - "dependencies" + - "6.15.z" + - "6.14.z" + - "6.13.z" + - "6.12.z"