Skip to content
Snippets Groups Projects
renovate.json 688 B
Newer Older
  • Learn to ignore specific revisions
  • {
      "$schema": "https://docs.renovatebot.com/renovate-schema.json",
      "extends": [
        "config:base",
        ":preserveSemverRanges"
      ],
      "schedule": ["every month on the first day of the month"],
      "prHourlyLimit": 10,
      "prConcurrentLimit": 20,
      "postUpdateOptions": ["yarnDedupeFewer"],
      "labels": ["dependencies", "bot"],
      "enabledManagers": ["npm"],
      "packageRules": [{
          "matchPackagePatterns": [
            "*"
          ],
          "matchUpdateTypes": [
            "minor",
            "patch"
          ],
          "groupName": "all non-major dependencies",
          "groupSlug": "all-minor-patch"
        },
        {
          "matchUpdateTypes": [
            "major"
          ],
          "enabled": false
        }
      ]
    }