forgejo/renovate.json

195 lines
6.2 KiB
JSON
Raw Normal View History

2024-03-25 10:31:15 +01:00
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
2024-08-23 11:17:36 +02:00
"extends": ["local>forgejo/renovate-config"],
2024-03-26 08:48:38 +01:00
"ignorePresets": [
":semanticPrefixFixDepsChoreOthers",
"docker:pinDigests",
"helpers:pinGitHubActionDigests"
],
2024-07-04 09:01:07 +02:00
"baseBranches": [
"$default",
"/^v[7-9]\\.\\d+/forgejo$/",
"/^v\\d\\d+\\.\\d+\\/forgejo$/"
2024-07-04 09:01:07 +02:00
],
2024-08-23 11:17:36 +02:00
"postUpdateOptions": ["gomodTidy", "gomodUpdateImportPaths", "npmDedupe"],
"prConcurrentLimit": 10,
"osvVulnerabilityAlerts": true,
2024-08-23 11:17:36 +02:00
"labels": ["dependency-upgrade"],
2024-03-25 10:31:15 +01:00
"packageRules": [
{
2024-08-23 11:17:36 +02:00
"description": "Require approval for python minor version",
2024-08-29 08:58:23 +02:00
"matchPackageNames": ["containerbase/python-prebuild", "python"],
2024-08-23 11:17:36 +02:00
"matchUpdateTypes": ["minor"],
2024-03-25 10:31:15 +01:00
"dependencyDashboardApproval": true
},
{
"description": "Require dashboard approval for some deps",
2024-08-29 08:58:23 +02:00
"matchPackageNames": [
"docker.io/bitnami/minio",
"github.com/go-ap/activitypub",
"github.com/nektos/act",
"gitea.com/gitea/act"
],
"dependencyDashboardApproval": true
},
{
"description": "Schedule some deps less frequently",
2024-08-29 08:58:23 +02:00
"matchPackageNames": [
"code.forgejo.org/f3/gof3/v3",
"github.com/google/pprof",
"github.com/golangci/misspell/cmd/misspell"
],
2024-08-23 11:17:36 +02:00
"extends": ["schedule:quarterly"]
},
{
"description": "elasticsearch CI images are published about once a month and do not use semantic versioning or short tags",
2024-08-29 08:58:23 +02:00
"matchPackageNames": ["elasticsearch"],
2024-08-23 11:17:36 +02:00
"extends": ["schedule:quarterly"]
},
{
"description": "devcontainer is an optional tool used by some Forgejo contributors when working on the codebase",
"groupName": "devcontainer packages",
2024-08-23 11:17:36 +02:00
"extends": ["schedule:quarterly"],
2024-07-27 08:09:28 +02:00
"automerge": true,
"matchPackageNames": [
"ghcr.io/devcontainers/features/**",
"ghcr.io/devcontainers-contrib/features/**"
2024-07-27 08:09:28 +02:00
]
},
2024-03-26 09:24:24 +01:00
{
"description": "Group nodejs packages",
2024-08-29 08:58:23 +02:00
"matchPackageNames": [
"code.forgejo.org/oci/node",
2024-08-21 11:27:19 +02:00
"docker.io/library/node",
"docker.io/node",
"node"
2024-07-27 08:09:28 +02:00
],
"groupName": "nodejs packages",
"versionCompatibility": "^(?<version>[^-]+)(?<compatibility>-.*)?$",
"versioning": "node"
2024-03-26 09:24:24 +01:00
},
{
"description": "x/tools/* are used in the CI only and upgraded together",
2024-08-23 11:17:36 +02:00
"matchUpdateTypes": ["minor", "patch", "digest"],
"automerge": true,
2024-07-27 08:09:28 +02:00
"groupName": "x/tools",
2024-08-23 11:17:36 +02:00
"matchPackageNames": ["golang.org/x/tools{/,}**"]
},
{
"description": "Group postcss minor and patch updates",
"extends": ["packages:postcss"],
"matchUpdateTypes": ["minor", "patch"],
"groupName": "postcss"
},
{
"description": "Split minor and patch updates",
2024-08-29 08:58:23 +02:00
"matchPackageNames": [
"containerbase/python-prebuild",
2024-06-05 08:55:10 +02:00
"github.com/urfave/cli/v2",
"python",
"swagger-ui-dist",
"vue"
],
"separateMinorPatch": true
},
{
"description": "Automerge patch updates",
2024-08-29 08:58:23 +02:00
"matchPackageNames": [
"vue",
"github.com/urfave/cli/v2",
"swagger-ui-dist"
],
2024-08-23 11:17:36 +02:00
"matchUpdateTypes": ["patch"],
"automerge": true
},
{
"description": "Automerge renovate updates",
2024-08-23 11:17:36 +02:00
"matchDatasources": ["docker"],
"matchPackageNames": [
"code.forgejo.org/forgejo-contrib/renovate",
"ghcr.io/visualon/renovate"
],
2024-08-23 11:17:36 +02:00
"matchUpdateTypes": ["minor", "patch", "digest"],
"automerge": true
},
{
"description": "Add reviewer and additional labels to renovate PRs",
2024-08-23 11:17:36 +02:00
"matchDatasources": ["docker"],
"matchPackageNames": [
"code.forgejo.org/forgejo-contrib/renovate",
"ghcr.io/visualon/renovate"
],
"reviewers": ["viceice"],
"addLabels": ["forgejo/ci", "test/not-needed"]
},
2024-03-25 10:31:15 +01:00
{
2024-04-08 09:16:51 +02:00
"description": "Update renovate with higher prio to come through rate limit",
2024-08-23 11:17:36 +02:00
"matchDatasources": ["docker"],
2024-07-27 08:09:28 +02:00
"matchPackageNames": [
2024-07-30 09:23:44 +02:00
"code.forgejo.org/forgejo-contrib/renovate",
2024-07-27 08:09:28 +02:00
"ghcr.io/visualon/renovate"
],
2024-08-23 11:17:36 +02:00
"extends": ["schedule:weekly"],
2024-07-26 14:07:39 +02:00
"prPriority": 10,
"groupName": "renovate"
2024-03-25 12:56:20 +01:00
},
{
"description": "Automerge some packages when CI succeeds",
2024-08-23 11:17:36 +02:00
"extends": ["packages:linters", "packages:test"],
2024-08-29 08:58:23 +02:00
"matchPackageNames": [
"@eslint-community/**",
"@playwright/**",
"@stoplight/spectral-cli",
"@stylistic/**",
"djlint",
"github.com/editorconfig-checker/editorconfig-checker/v2/cmd/editorconfig-checker",
2024-06-05 08:55:10 +02:00
"github.com/golangci/golangci-lint/cmd/golangci-lint",
"github.com/go-testfixtures/testfixtures",
"github.com/PuerkitoBio/goquery",
"happy-dom",
"markdownlint-cli",
2024-08-29 08:58:23 +02:00
"mcr.microsoft.com/devcontainers/**",
"mvdan.cc/gofumpt",
2024-06-05 08:55:10 +02:00
"updates",
"vite-string-plugin",
"@vue/test-utils"
],
2024-08-29 08:58:23 +02:00
"automerge": true
},
{
"description": "Hold back on some package updates for a few days",
2024-08-29 08:58:23 +02:00
"matchPackageNames": ["monaco-editor"],
"minimumReleaseAge": "30 days"
},
{
"description": "disallow `eslint-plugin-no-use-extend-native` v0.6.0+, requires eslint v9",
2024-08-29 08:58:23 +02:00
"matchPackageNames": ["eslint-plugin-no-use-extend-native"],
"allowedVersions": "<0.6.0"
2024-07-04 09:01:07 +02:00
},
{
"description": "Require approval for stable branches (must be last rule to override all others)",
2024-08-23 11:17:36 +02:00
"matchBaseBranches": ["/^v\\d+\\.\\d+\\/forgejo$/"],
"dependencyDashboardApproval": true,
2024-08-23 11:17:36 +02:00
"schedule": ["at any time"]
2024-03-25 10:31:15 +01:00
}
],
"customManagers": [
2024-03-26 09:24:24 +01:00
{
"description": "Update node-version in forgejo workflows",
"customType": "regex",
2024-08-23 11:17:36 +02:00
"fileMatch": ["^.forgejo/workflows/.+\\.yml$"],
"matchStrings": ["\\s+node-version: ['\"]?(?<currentValue>.+?)['\"]?\\s"],
2024-05-03 14:00:29 +02:00
"depNameTemplate": "node",
"datasourceTemplate": "node-version"
},
{
"description": "Update deps inside Makefile",
"customType": "regex",
2024-08-23 11:17:36 +02:00
"fileMatch": ["^Makefile$"],
"matchStrings": [
" \\?= (?<depName>.+?)@(?<currentValue>.+?) # renovate: datasource=(?<datasource>.+?)(?: packageName=(?<packageName>.+?))?( versioning=(?<versioning>.+?))?\\s"
]
2024-03-25 10:31:15 +01:00
}
]
}