Unverified Commit 1f30c37f authored by Michael Kriese's avatar Michael Kriese
Browse files

chore: prettier

parent 59bd5829
Loading
Loading
Loading
Loading
+21 −6
Original line number Diff line number Diff line
@@ -6,7 +6,10 @@
  "packageRules": [
    {
      "description": "Trigger breaking release for major updates",
      "matchPackageNames": ["renovate/renovate", "ghcr.io/renovatebot/renovate"],
      "matchPackageNames": [
        "renovate/renovate",
        "ghcr.io/renovatebot/renovate"
      ],
      "matchUpdateTypes": ["major"],
      "semanticCommitType": "feat",
      "commitBody": "BREAKING CHANGE: Major update",
@@ -14,21 +17,30 @@
    },
    {
      "description": "Trigger feature release for minor updates",
      "matchPackageNames": ["renovate/renovate", "ghcr.io/renovatebot/renovate"],
      "matchPackageNames": [
        "renovate/renovate",
        "ghcr.io/renovatebot/renovate"
      ],
      "matchUpdateTypes": ["minor"],
      "semanticCommitType": "feat",
      "automergeType": "pr"
    },
    {
      "description": "Trigger fix release for patch updates",
      "matchPackageNames": ["renovate/renovate", "ghcr.io/renovatebot/renovate"],
      "matchPackageNames": [
        "renovate/renovate",
        "ghcr.io/renovatebot/renovate"
      ],
      "matchUpdateTypes": ["patch", "digest"],
      "semanticCommitType": "fix",
      "automergeType": "pr"
    },
    {
      "description": "Allow updates after 3 days (exclude renovate)",
      "excludePackageNames": ["renovate/renovate", "ghcr.io/renovatebot/renovate"],
      "excludePackageNames": [
        "renovate/renovate",
        "ghcr.io/renovatebot/renovate"
      ],
      "separateMinorPatch": true,
      "stabilityDays": 3
    },
@@ -43,7 +55,10 @@
    },
    {
      "description": "Full image is sometimes behind, so we need to force a new MR",
      "matchPackageNames": ["renovate/renovate", "ghcr.io/renovatebot/renovate"],
      "matchPackageNames": [
        "renovate/renovate",
        "ghcr.io/renovatebot/renovate"
      ],
      "matchUpdateTypes": ["major", "minor", "patch"],
      "recreateClosed": true
    }