-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrenovate.json5
More file actions
50 lines (50 loc) · 1.84 KB
/
Copy pathrenovate.json5
File metadata and controls
50 lines (50 loc) · 1.84 KB
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
{
// !!! IMPORTANT NOTICE !!!
// Modular renovate configuration is in the `.renovate/` directory!
//
$schema: "https://docs.renovatebot.com/renovate-schema.json",
extends: [
"config:recommended",
"docker:enableMajor",
":automergeBranch",
":automergeDigest",
":dependencyDashboard",
":disableRateLimiting",
":semanticCommits",
":timezone(America/Chicago)",
"helpers:pinGitHubActionDigestsToSemver",
"mergeConfidence:all-badges",
"github>rcdailey/home-ops//.renovate/autoMerge.json5",
"github>rcdailey/home-ops//.renovate/changelogs.json5",
"github>rcdailey/home-ops//.renovate/groups.json5",
"github>rcdailey/home-ops//.renovate/semanticCommits.json5",
"github>rcdailey/home-ops//.renovate/customManagers.json5",
],
dependencyDashboardTitle: "Renovate Dashboard 🤖",
suppressNotifications: ["prEditedNotification", "prIgnoreNotification"],
configMigration: true,
osvVulnerabilityAlerts: false,
// ghcr.io doesn't provide release timestamps, so treat missing timestamps as stable
// to prevent packages from being stuck in "pending status checks" forever
minimumReleaseAgeBehaviour: "timestamp-optional",
// I frequently rewrite commits on main, and as a result, orphaned commits on main are treated as
// custom commits on renovate branches. This ignored authors setting prevents Renovate from
// thinking I've made intentional, custom modifications to branches it manages.
gitIgnoredAuthors: [
"git@example.com",
"227055450+renohate[bot]@users.noreply.github.com",
],
ignorePaths: ["**/*.sops.*", "**/resources/**"],
flux: {
managerFilePatterns: ["/\\.yaml(?:\\.j2)?$/"],
},
kubernetes: {
managerFilePatterns: ["/\\.yaml(?:\\.j2)?$/"],
},
"helm-values": {
managerFilePatterns: ["/\\.yaml(?:\\.j2)?$/"],
},
"pre-commit": {
enabled: true,
},
}