aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorTheo Buehler <tb@openbsd.org>2026-04-13 08:24:47 +0200
committerTheo Buehler <tb@openbsd.org>2026-04-13 08:24:47 +0200
commitca85c3226fbb32459ecaaf1d9a10a6509e49f725 (patch)
treee9095c55cb18808036e05cc753e44e18b8615550 /.github
parent1206a57b20264fc69aa23671f2c42c4b03d21ad8 (diff)
parentff82994abda92e985da7ae4fc1538ce6709c702a (diff)
downloadportable-ca85c3226fbb32459ecaaf1d9a10a6509e49f725.tar.gz
portable-ca85c3226fbb32459ecaaf1d9a10a6509e49f725.tar.bz2
portable-ca85c3226fbb32459ecaaf1d9a10a6509e49f725.zip
Land #1247 - add renovate-bot-config
Diffstat (limited to '.github')
-rw-r--r--.github/renovate.json532
1 files changed, 32 insertions, 0 deletions
diff --git a/.github/renovate.json5 b/.github/renovate.json5
new file mode 100644
index 0000000..cf31aad
--- /dev/null
+++ b/.github/renovate.json5
@@ -0,0 +1,32 @@
1{
2 $schema: 'https://docs.renovatebot.com/renovate-schema.json',
3 extends: [
4 'config:best-practices',
5 ':configMigration',
6 ':pinVersions',
7 ':rebaseStalePrs',
8 'schedule:weekends',
9 'customManagers:githubActionsVersions',
10 'helpers:pinGitHubActionDigests',
11 ],
12 commitMessagePrefix: 'ci:',
13 commitMessageAction: 'update',
14 commitMessageTopic: '{{depName}}',
15 labels: [
16 'dependencies',
17 ],
18 minimumReleaseAge: '3 days',
19 packageRules: [
20 {
21 matchUpdateTypes: ['pin', 'pinDigest'],
22 commitMessageAction: 'pin',
23 },
24 ],
25 osvVulnerabilityAlerts: true,
26 vulnerabilityAlerts: {
27 enabled: true,
28 addLabels: [
29 'security',
30 ],
31 },
32}