Skip to content

Commit

Permalink
Merge pull request #1855 from sgibson91/update-dependabot
Browse files Browse the repository at this point in the history
  • Loading branch information
sgibson91 authored Nov 2, 2022
2 parents ca6f2f5 + 46a2b0f commit 799ff0a
Showing 1 changed file with 29 additions and 1 deletion.
30 changes: 29 additions & 1 deletion .github/dependabot.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@
#
# Full configuration options can be found here:
# https://docs.github.com/en/code-security/supply-chain-security/keeping-your-dependencies-updated-automatically/configuration-options-for-dependency-updates
#
# `directory` is a required field that can only take one value. Therefore, to
# locate the different requirements.txt files throughout the repo, we must define
# multiple rules with a specific path for `directory`

version: 2
updates:
Expand All @@ -30,7 +34,7 @@ updates:
dependency-name: "*" # Match all packages
reviewers:
- "2i2c-org/tech-team"
# Maintain dependencies for pip
# Maintain dependencies for pip defined in project root (deployer module)
- package-ecosystem: "pip"
directory: "/"
schedule:
Expand All @@ -42,3 +46,27 @@ updates:
dependency-name: "*" # Match all packages
reviewers:
- "2i2c-org/tech-team"
# Maintain dependencies for pip defined in docs folder (documentation)
- package-ecosystem: "pip"
directory: "/docs"
schedule:
# Check for updates once a week. By default, this check happens on a Monday.
interval: "weekly"
ignore:
# Ignore patch upgrades to further reduce noise
- update-types: ["version-update:semver-patch"]
dependency-name: "*" # Match all packages
reviewers:
- "2i2c-org/tech-team"
# Maintain dependencies for pip defined in helm-charts/images/hub folder (default hub image)
- package-ecosystem: "pip"
directory: "/helm-charts/images/hub"
schedule:
# Check for updates once a week. By default, this check happens on a Monday.
interval: "weekly"
ignore:
# Ignore patch upgrades to further reduce noise
- update-types: ["version-update:semver-patch"]
dependency-name: "*" # Match all packages
reviewers:
- "2i2c-org/tech-team"

0 comments on commit 799ff0a

Please sign in to comment.