From 07bec33700b15023f080c8a5b743395d06f2c968 Mon Sep 17 00:00:00 2001 From: tooomm Date: Sat, 28 Oct 2023 12:20:14 +0200 Subject: [PATCH] Update dependabot.yml Reduce noise, disabling *normal* dependabot updates until the repo is more actively maintained again. --- .github/dependabot.yml | 38 ++++++++++++++++++++------------------ 1 file changed, 20 insertions(+), 18 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index fc120bef..b25a53f5 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -4,25 +4,27 @@ version: 2 updates: - # Enable version updates for npm - - package-ecosystem: "npm" - # Look for `package.json` and `lock` files in the `root` directory - directory: "/" - # Check the npm registry for updates once a week - schedule: - interval: "weekly" - # Limit the amout of open PR's (default = 5, disabled = 0, security updates are not impacted) - open-pull-requests-limit: 5 - + # To reduce noise, CURRENTLY DISABLED non-critical-security updates until the repo is more maintained again + # + ## Enable version updates for npm + #- package-ecosystem: "npm" + # # Look for `package.json` and `lock` files in the `root` directory + # directory: "/" + # # Check the npm registry for updates once a week + # schedule: + # interval: "weekly" + # # Limit the amout of open PR's (default = 5, disabled = 0, security updates are not impacted) + # open-pull-requests-limit: 5 + # # Enable version updates for Docker - - package-ecosystem: "docker" - # Look for a `Dockerfile` in the `root` directory - directory: "/" - # Check for updates once a week - schedule: - interval: "weekly" - # Limit the amout of open PR's (default = 5, disabled = 0, security updates are not impacted) - open-pull-requests-limit: 1 + #- package-ecosystem: "docker" + # # Look for a `Dockerfile` in the `root` directory + # directory: "/" + # # Check for updates once a week + # schedule: + # interval: "weekly" + # # Limit the amout of open PR's (default = 5, disabled = 0, security updates are not impacted) + # open-pull-requests-limit: 1 # Enable version updates for GitHub Actions - package-ecosystem: "github-actions"