forked from OSGeo/grass
-
Notifications
You must be signed in to change notification settings - Fork 1
/
renovate.json5
55 lines (49 loc) · 1.55 KB
/
renovate.json5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:best-practices",
":semanticCommits",
":semanticCommitTypeAll(CI)",
// allows to use comments starting with
// "# renovate: " to update _VERSION
// environment variables in GitHub Action files.
"customManagers:githubActionsVersions",
// allows to use comments starting with
// "# renovate: " to update _VERSION
// ENV or ARG in a Dockerfile.
"customManagers:dockerfileVersions",
// when a dependency is really out of date, this will prevent to skip directly to the latest version.
":separateMultipleMajorReleases",
// Renovate's pre-commit support is still opt-in
":enablePreCommit",
// weekly update of lock files (flake.lock)
":maintainLockFilesWeekly",
"group:githubArtifactActions",
],
// enable Nix lock file update (flake.lock)
"nix": {
"enabled": true,
},
"packageRules": [
{
"groupName": "ruff",
"matchPackageNames": [
"astral-sh/ruff",
"astral-sh/ruff-pre-commit",
"ruff",
],
},
{
"groupName": "flake8",
"matchPackageNames": ["pycqa/flake8", "flake8"],
},
{
"groupName": "black",
"matchPackageNames": [
"psf/black-pre-commit-mirror",
"psf/black",
"black",
],
},
],
}