forked from renovatebot/renovate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Renovate
2883 lines (2883 loc) · 92 KB
/
Renovate
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
title": "JSON schema for Renovate config files (https://renovatebot.com/)",
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"addLabels": {
"description": "Labels to add to Pull Request.",
"type": "array",
"items": {
"type": "string"
}
},
"additionalBranchPrefix": {
"description": "Additional string value to be appended to `branchPrefix`.",
"type": "string",
"default": ""
},
"additionalReviewers": {
"description": "Additional reviewers for Pull Requests (in contrast to `reviewers`, this option adds to the existing reviewer list, rather than replacing it).",
"type": "array",
"items": {
"type": "string"
}
},
"allowCustomCrateRegistries": {
"description": "Set this to `true` to allow custom crate registries.",
"type": "boolean",
"default": false
},
"allowPlugins": {
"description": "Set this to `true` if repositories are allowed to run install plugins.",
"type": "boolean",
"default": false
},
"allowPostUpgradeCommandTemplating": {
"description": "Set this to `false` to disable template compilation for post-upgrade commands.",
"type": "boolean",
"default": true
},
"allowScripts": {
"description": "Set this to `true` if repositories are allowed to run install scripts.",
"type": "boolean",
"default": false
},
"allowedPostUpgradeCommands": {
"description": "A list of regular expressions that decide which post-upgrade tasks are allowed.",
"type": "array",
"items": {
"type": "string"
},
"default": []
},
"ansible": {
"description": "Configuration object for the ansible manager",
"type": "object",
"default": {
"fileMatch": ["(^|/)tasks/[^/]+\\.ya?ml$"]
},
"$ref": "#"
},
"ansible-galaxy": {
"description": "Configuration object for the ansible-galaxy manager",
"type": "object",
"default": {
"fileMatch": ["(^|/)requirements\\.ya?ml$", "(^|/)galaxy\\.ya?ml$"]
},
"$ref": "#"
},
"argocd": {
"description": "Configuration object for the argocd manager",
"type": "object",
"default": {
"fileMatch": []
},
"$ref": "#"
},
"asdf": {
"description": "Configuration object for the asdf manager",
"type": "object",
"default": {
"fileMatch": ["(^|/)\\.tool-versions$"]
},
"$ref": "#"
},
"assignAutomerge": {
"description": "Assign reviewers and assignees even if the PR is to be automerged.",
"type": "boolean",
"default": false
},
"assignees": {
"description": "Assignees for Pull Request (either username or email address depending on the platform).",
"type": "array",
"items": {
"type": "string"
}
},
"assigneesFromCodeOwners": {
"description": "Determine assignees based on configured code owners and changes in PR.",
"type": "boolean",
"default": false
},
"assigneesSampleSize": {
"description": "Take a random sample of given size from `assignees`.",
"type": "integer",
"default": null
},
"autoApprove": {
"description": "Set to `true` to automatically approve PRs.",
"type": "boolean",
"default": false
},
"autoReplaceGlobalMatch": {
"description": "Control whether replacement regular expressions are global matches or only the first match.",
"type": "boolean",
"default": true
},
"autodiscover": {
"description": "Autodiscover all repositories.",
"type": "boolean",
"default": false
},
"autodiscoverFilter": {
"description": "Filter the list of autodiscovered repositories.",
"oneOf": [
{
"type": "array",
"items": {
"type": "string"
}
},
{
"type": "string"
}
],
"default": null
},
"autodiscoverTopics": {
"description": "Filter the list of autodiscovered repositories by topics.",
"type": "array",
"items": {
"type": "string"
},
"default": null
},
"automerge": {
"description": "Whether to automerge branches/PRs automatically, without human intervention.",
"type": "boolean",
"default": false
},
"automergeComment": {
"description": "PR comment to add to trigger automerge. Only used if `automergeType=pr-comment`.",
"type": "string",
"default": "automergeComment"
},
"automergeSchedule": {
"description": "Limit automerge to these times of day or week.",
"oneOf": [
{
"type": "array",
"items": {
"type": "string"
}
},
{
"type": "string"
}
],
"default": ["at any time"]
},
"automergeStrategy": {
"description": "The merge strategy to use when automerging PRs. Used only if `automergeType=pr`.",
"type": "string",
"enum": ["auto", "fast-forward", "merge-commit", "rebase", "squash"],
"default": "auto"
},
"automergeType": {
"description": "How to automerge, if enabled.",
"type": "string",
"enum": ["branch", "pr", "pr-comment"],
"default": "pr"
},
"azure-pipelines": {
"description": "Configuration object for the azure-pipelines manager",
"type": "object",
"default": {
"fileMatch": ["azure.*pipelines?.*\\.ya?ml$"],
"enabled": false
},
"$ref": "#"
},
"azureWorkItemId": {
"description": "The id of an existing work item on Azure Boards to link to each PR.",
"type": "integer",
"default": 0
},
"baseBranches": {
"description": "List of one or more custom base branches defined as exact strings and/or via regex expressions.",
"type": "array",
"items": {
"type": "string"
}
},
"baseDir": {
"description": "The base directory for Renovate to store local files, including repository files and cache. If left empty, Renovate will create its own temporary directory to use.",
"type": "string"
},
"batect": {
"description": "Configuration object for the batect manager",
"type": "object",
"default": {
"fileMatch": ["(^|/)batect(-bundle)?\\.ya?ml$"]
},
"$ref": "#"
},
"batect-wrapper": {
"description": "Configuration object for the batect-wrapper manager",
"type": "object",
"default": {
"fileMatch": ["(^|/)batect$"],
"versioning": "semver"
},
"$ref": "#"
},
"bazel": {
"description": "Configuration object for the bazel manager",
"type": "object",
"default": {
"fileMatch": ["(^|/)WORKSPACE(|\\.bazel)$", "\\.bzl$"]
},
"$ref": "#"
},
"bazel-module": {
"description": "Configuration object for the bazel-module manager",
"type": "object",
"default": {
"fileMatch": ["(^|/)MODULE\\.bazel$"]
},
"$ref": "#"
},
"bazelisk": {
"description": "Configuration object for the bazelisk manager",
"type": "object",
"default": {
"fileMatch": ["(^|/)\\.bazelversion$"],
"pinDigests": false
},
"$ref": "#"
},
"bbUseDefaultReviewers": {
"description": "Use the default reviewers (Bitbucket only).",
"type": "boolean",
"default": true
},
"bbUseDevelopmentBranch": {
"description": "Use the repository's [development branch](https://support.atlassian.com/bitbucket-cloud/docs/branch-a-repository/#The-branching-model) as the repository's default branch.",
"type": "boolean",
"default": false
},
"bicep": {
"description": "Configuration object for the bicep manager",
"type": "object",
"default": {
"fileMatch": ["\\.bicep$"]
},
"$ref": "#"
},
"binarySource": {
"description": "Controls how third-party tools like npm or Gradle are called: directly, via Docker sidecar containers, or via dynamic install.",
"type": "string",
"enum": ["global", "docker", "install", "hermit"],
"default": "install"
},
"bitbucket-pipelines": {
"description": "Configuration object for the bitbucket-pipelines manager",
"type": "object",
"default": {
"fileMatch": ["(^|/)\\.?bitbucket-pipelines\\.ya?ml$"]
},
"$ref": "#"
},
"branchConcurrentLimit": {
"description": "Limit to a maximum of x concurrent branches. 0 means no limit, `null` (default) inherits value from `prConcurrentLimit`.",
"type": "integer",
"default": null
},
"branchName": {
"description": "Branch name template.",
"type": "string",
"default": "{{{branchPrefix}}}{{{additionalBranchPrefix}}}{{{branchTopic}}}"
},
"branchNameStrict": {
"description": "Whether to be strict about the use of special characters within the branch name.",
"type": "boolean",
"default": false
},
"branchPrefix": {
"description": "Prefix to use for all branch names.",
"type": "string",
"default": "renovate/"
},
"branchPrefixOld": {
"description": "Old branchPrefix value to check for existing PRs.",
"type": "string",
"default": "renovate/"
},
"branchTopic": {
"description": "Branch topic.",
"type": "string",
"default": "{{{depNameSanitized}}}-{{{newMajor}}}{{#if separateMinorPatch}}{{#if isPatch}}.{{{newMinor}}}{{/if}}{{/if}}.x{{#if isLockfileUpdate}}-lockfile{{/if}}"
},
"buildkite": {
"description": "Configuration object for the buildkite manager",
"type": "object",
"default": {
"fileMatch": ["buildkite\\.ya?ml", "\\.buildkite/.+\\.ya?ml$"],
"commitMessageTopic": "buildkite plugin {{depName}}",
"commitMessageExtra": "to {{#if isMajor}}{{{prettyNewMajor}}}{{else}}{{{newValue}}}{{/if}}"
},
"$ref": "#"
},
"bumpVersion": {
"description": "Bump the version in the package file being updated.",
"type": "string",
"enum": ["major", "minor", "patch", "prerelease"]
},
"bundler": {
"description": "Configuration object for the bundler manager",
"type": "object",
"default": {
"fileMatch": ["(^|/)Gemfile$"],
"versioning": "ruby"
},
"$ref": "#"
},
"cacheDir": {
"description": "The directory where Renovate stores its cache. If left empty, Renovate creates a subdirectory within the `baseDir`.",
"type": "string"
},
"cacheHardTtlMinutes": {
"description": "Maximum duration in minutes to keep datasource cache entries.",
"type": "integer",
"default": 1440
},
"cake": {
"description": "Configuration object for the cake manager",
"type": "object",
"default": {
"fileMatch": ["\\.cake$"]
},
"$ref": "#"
},
"cargo": {
"description": "Configuration object for the cargo manager",
"type": "object",
"default": {
"commitMessageTopic": "Rust crate {{depName}}",
"fileMatch": ["(^|/)Cargo\\.toml$"],
"versioning": "cargo"
},
"$ref": "#"
},
"cdnurl": {
"description": "Configuration object for the cdnurl manager",
"type": "object",
"default": {
"fileMatch": [],
"versioning": "semver"
},
"$ref": "#"
},
"checkedBranches": {
"description": "A list of branch names to mark for creation or rebasing as if it was selected in the Dependency Dashboard issue.",
"type": "array",
"items": {
"type": "string"
},
"default": []
},
"circleci": {
"description": "Configuration object for the circleci manager",
"type": "object",
"default": {
"fileMatch": ["(^|/)\\.circleci/config\\.ya?ml$"]
},
"$ref": "#"
},
"cloneSubmodules": {
"description": "Set to `true` to initialize submodules during repository clone.",
"type": "boolean",
"default": false
},
"cloudbuild": {
"description": "Configuration object for the cloudbuild manager",
"type": "object",
"default": {
"fileMatch": ["(^|/)cloudbuild\\.ya?ml"]
},
"$ref": "#"
},
"cocoapods": {
"description": "Configuration object for the cocoapods manager",
"type": "object",
"default": {
"fileMatch": ["(^|/)Podfile$"],
"versioning": "ruby"
},
"$ref": "#"
},
"commitBody": {
"description": "Commit message body template. Will be appended to commit message, separated by two line returns.",
"type": "string"
},
"commitBodyTable": {
"description": "If enabled, append a table in the commit message body describing all updates in the commit.",
"type": "boolean",
"default": false
},
"commitMessage": {
"description": "Message to use for commit messages and pull request titles.",
"type": "string",
"default": "{{{commitMessagePrefix}}} {{{commitMessageAction}}} {{{commitMessageTopic}}} {{{commitMessageExtra}}} {{{commitMessageSuffix}}}"
},
"commitMessageAction": {
"description": "Action verb to use in commit messages and PR titles.",
"type": "string",
"default": "Update"
},
"commitMessageExtra": {
"description": "Extra description used after the commit message topic - typically the version.",
"type": "string",
"default": "to {{#if isPinDigest}}{{{newDigestShort}}}{{else}}{{#if isMajor}}{{prettyNewMajor}}{{else}}{{#if isSingleVersion}}{{prettyNewVersion}}{{else}}{{#if newValue}}{{{newValue}}}{{else}}{{{newDigestShort}}}{{/if}}{{/if}}{{/if}}{{/if}}"
},
"commitMessageLowerCase": {
"description": "Lowercase PR- and commit titles.",
"type": "string",
"enum": ["auto", "never"],
"default": "auto"
},
"commitMessagePrefix": {
"description": "Prefix to add to start of commit messages and PR titles. Uses a semantic prefix if `semanticCommits` is enabled.",
"type": "string"
},
"commitMessageSuffix": {
"description": "Suffix to add to end of commit messages and PR titles.",
"type": "string"
},
"commitMessageTopic": {
"description": "The upgrade topic/noun used in commit messages and PR titles.",
"type": "string",
"default": "dependency {{depName}}"
},
"composer": {
"description": "Configuration object for the composer manager",
"type": "object",
"default": {
"fileMatch": ["(^|/)([\\w-]*)composer\\.json$"],
"versioning": "composer"
},
"$ref": "#"
},
"composerIgnorePlatformReqs": {
"description": "Configure use of `--ignore-platform-reqs` or `--ignore-platform-req` for the Composer package manager.",
"type": "array",
"items": {
"type": "string"
},
"default": []
},
"conan": {
"description": "Configuration object for the conan manager",
"type": "object",
"default": {
"fileMatch": ["(^|/)conanfile\\.(txt|py)$"],
"datasource": "conan",
"versioning": "conan",
"enabled": false
},
"$ref": "#"
},
"confidential": {
"description": "If enabled, issues created by Renovate are set as confidential.",
"type": "boolean",
"default": false
},
"configMigration": {
"description": "Enable this to get config migration PRs when needed.",
"type": "boolean",
"default": false
},
"configWarningReuseIssue": {
"description": "Set this to `false` to make Renovate create a new issue for each config warning, instead of reopening or reusing an existing issue.",
"type": "boolean",
"default": true
},
"constraints": {
"description": "Configuration object to define language or manager version constraints.",
"type": "object",
"default": {},
"$ref": "#"
},
"constraintsFiltering": {
"description": "Perform release filtering based on language constraints.",
"type": "string",
"enum": ["none", "strict"],
"default": "none"
},
"containerbaseDir": {
"description": "The directory where Renovate stores its containerbase cache. If left empty, Renovate creates a subdirectory within the `cacheDir`.",
"type": "string"
},
"cpanfile": {
"description": "Configuration object for the cpanfile manager",
"type": "object",
"default": {
"fileMatch": ["(^|/)cpanfile$"]
},
"$ref": "#"
},
"customDatasources": {
"description": "Defines custom datasources for usage by managers",
"type": "object",
"default": {},
"$ref": "#",
"items": {
"allOf": [
{
"type": "object",
"properties": {
"description": {
"type": "string",
"description": "A custom description for this configuration object"
},
"defaultRegistryUrlTemplate": {
"description": "Template for generating a defaultRegistryUrl for custom datasource",
"type": "string",
"default": ""
},
"format": {
"description": "Format of the custom datasource",
"type": "string",
"enum": ["json", "plain"],
"default": "json"
},
"transformTemplates": {
"description": "List of jsonata transformation rules",
"type": "array",
"items": {
"type": "string"
},
"default": []
}
}
}
]
}
},
"customEnvVariables": {
"description": "Custom environment variables for child processes and sidecar Docker containers.",
"type": "object",
"default": {},
"$ref": "#"
},
"customizeDashboard": {
"description": "Customize sections in the dependency dashboard issue.",
"type": "object",
"default": {},
"additionalProperties": {
"type": "string"
},
"$ref": "#"
},
"defaultRegistryUrls": {
"description": "List of registry URLs to use as the default for a datasource.",
"type": "array",
"items": {
"type": "string"
},
"default": null
},
"dependencyDashboard": {
"description": "Whether to create a \"Dependency Dashboard\" issue in the repository.",
"type": "boolean",
"default": false
},
"dependencyDashboardApproval": {
"description": "Controls if updates need manual approval from the Dependency Dashboard issue before PRs are created.",
"type": "boolean",
"default": false
},
"dependencyDashboardAutoclose": {
"description": "Set to `true` to let Renovate close the Dependency Dashboard issue if there are no more updates.",
"type": "boolean",
"default": false
},
"dependencyDashboardFooter": {
"description": "Any text added here will be placed last in the Dependency Dashboard issue body, with a divider separator before it.",
"type": "string"
},
"dependencyDashboardHeader": {
"description": "Any text added here will be placed first in the Dependency Dashboard issue body.",
"type": "string",
"default": "This issue lists Renovate updates and detected dependencies. Read the [Dependency Dashboard](https://docs.renovatebot.com/key-concepts/dashboard/) docs to learn more."
},
"dependencyDashboardLabels": {
"description": "These labels will always be applied on the Dependency Dashboard issue, even when they have been removed manually.",
"type": "array",
"items": {
"type": "string"
},
"default": null
},
"dependencyDashboardOSVVulnerabilitySummary": {
"description": "Control if the Dependency Dashboard issue lists CVEs supplied by [osv.dev](https://osv.dev).",
"type": "string",
"enum": ["none", "all", "unresolved"],
"default": "none"
},
"dependencyDashboardTitle": {
"description": "Title for the Dependency Dashboard issue.",
"type": "string",
"default": "Dependency Dashboard"
},
"deps-edn": {
"description": "Configuration object for the deps-edn manager",
"type": "object",
"default": {
"fileMatch": ["(^|/)(?:deps|bb)\\.edn$"],
"versioning": "maven"
},
"$ref": "#"
},
"description": {
"description": "Plain text description for a config or preset.",
"oneOf": [
{
"type": "array",
"items": {
"type": "string"
}
},
{
"type": "string"
}
]
},
"detectGlobalManagerConfig": {
"description": "If `true`, Renovate tries to detect global manager configuration from the file system.",
"type": "boolean",
"default": false
},
"detectHostRulesFromEnv": {
"description": "If `true`, Renovate tries to detect host rules from environment variables.",
"type": "boolean",
"default": false
},
"digest": {
"description": "Configuration to apply when updating a digest (no change in tag/version).",
"type": "object",
"default": {
"branchTopic": "{{{depNameSanitized}}}-digest",
"commitMessageExtra": "to {{newDigestShort}}",
"commitMessageTopic": "{{{depName}}} digest"
},
"$ref": "#"
},
"docker-compose": {
"description": "Configuration object for the docker-compose manager",
"type": "object",
"default": {
"fileMatch": ["(^|/)(?:docker-)?compose[^/]*\\.ya?ml$"]
},
"$ref": "#"
},
"dockerChildPrefix": {
"description": "Change this value to add a prefix to the Renovate Docker sidecar container names and labels.",
"type": "string",
"default": "renovate_"
},
"dockerCliOptions": {
"description": "Pass CLI flags to `docker run` command when `binarySource=docker`.",
"type": "string"
},
"dockerSidecarImage": {
"description": "Change this value to override the default Renovate sidecar image.",
"type": "string",
"default": "ghcr.io/containerbase/sidecar:9.9.0"
},
"dockerUser": {
"description": "Set the `UID` and `GID` for Docker-based binaries if you use `binarySource=docker`.",
"type": "string"
},
"dockerfile": {
"description": "Configuration object for the dockerfile manager",
"type": "object",
"default": {
"fileMatch": [
"(^|/|\\.)([Dd]ocker|[Cc]ontainer)file$",
"(^|/)([Dd]ocker|[Cc]ontainer)file[^/]*$"
]
},
"$ref": "#"
},
"draftPR": {
"description": "If set to `true` then Renovate creates draft PRs, instead of normal status PRs.",
"type": "boolean",
"default": false
},
"droneci": {
"description": "Configuration object for the droneci manager",
"type": "object",
"default": {
"fileMatch": ["(^|/)\\.drone\\.yml$"]
},
"$ref": "#"
},
"dryRun": {
"description": "If enabled, perform a dry run by logging messages instead of creating/updating/deleting branches and PRs.",
"type": "string",
"enum": ["extract", "lookup", "full"],
"default": null
},
"enabled": {
"description": "Enable or disable Renovate bot.",
"type": "boolean"
},
"enabledManagers": {
"description": "A list of package managers to enable. Only managers on the list are enabled.",
"type": "array",
"items": {
"type": "string"
}
},
"encrypted": {
"description": "An object containing configuration encrypted with project key.",
"type": "object",
"default": null,
"$ref": "#"
},
"endpoint": {
"description": "Custom endpoint to use.",
"type": "string",
"default": null
},
"excludeCommitPaths": {
"description": "A file matching any of these glob patterns will not be committed, even if the file has been updated.",
"type": "array",
"items": {
"type": "string"
},
"default": []
},
"executionTimeout": {
"description": "Default execution timeout in minutes for child processes Renovate creates.",
"type": "integer",
"default": 15
},
"exposeAllEnv": {
"description": "Set this to `true` to allow passing of all environment variables to package managers.",
"type": "boolean",
"default": false
},
"extends": {
"description": "Configuration presets to use or extend.",
"oneOf": [
{
"type": "array",
"items": {
"type": "string"
}
},
{
"type": "string"
}
]
},
"extractVersion": {
"description": "A regex (`re2`) to extract a version from a datasource's raw version string.",
"type": "string",
"format": "regex"
},
"fetchReleaseNotes": {
"description": "Controls if and when release notes are fetched.",
"type": "string",
"enum": ["off", "branch", "pr"],
"default": "pr"
},
"fileMatch": {
"description": "RegEx (`re2`) pattern for matching manager files.",
"oneOf": [
{
"type": "array",
"items": {
"type": "string",
"format": "regex"
}
},
{
"type": "string",
"format": "regex"
}
]
},
"filterUnavailableUsers": {
"description": "Filter reviewers and assignees based on their availability.",
"type": "boolean",
"default": false
},
"fleet": {
"description": "Configuration object for the fleet manager",
"type": "object",
"default": {
"fileMatch": ["(^|/)fleet\\.ya?ml"]
},
"$ref": "#"
},
"flux": {
"description": "Configuration object for the flux manager",
"type": "object",
"default": {
"fileMatch": ["(^|/)flux-system/(?:.+/)?gotk-components\\.ya?ml$"]
},
"$ref": "#"
},
"followTag": {
"description": "If defined, packages will follow this release tag exactly.",
"type": "string"
},
"force": {
"description": "Any configuration set in this object will force override existing settings.",
"type": "object",
"$ref": "#"
},
"forceCli": {
"description": "Decides if CLI configuration options are moved to the `force` config section.",
"type": "boolean",
"default": true
},
"forkModeDisallowMaintainerEdits": {
"description": "Disallow maintainers to push to Renovate pull requests when running in fork mode.",
"type": "boolean",
"default": false
},
"forkOrg": {
"description": "The preferred organization to create or find forked repositories, when in fork mode.",
"type": "string"
},
"forkProcessing": {
"description": "Whether to process forked repositories. By default, all forked repositories are skipped when in `autodiscover` mode.",
"type": "string",
"enum": ["auto", "enabled", "disabled"],
"default": "auto"
},
"forkToken": {
"description": "Set a personal access token here to enable \"fork mode\".",
"type": "string"
},
"fvm": {
"description": "Configuration object for the fvm manager",
"type": "object",
"default": {
"fileMatch": ["(^|/)\\.fvm/fvm_config\\.json$"],
"versioning": "semver"
},
"$ref": "#"
},
"git-submodules": {
"description": "Configuration object for the git-submodules manager",
"type": "object",
"default": {
"enabled": false,
"versioning": "git",
"fileMatch": ["(^|/)\\.gitmodules$"]
},
"$ref": "#"
},
"gitAuthor": {
"description": "Author to use for Git commits. Must conform to [RFC5322](https://datatracker.ietf.org/doc/html/rfc5322).",
"type": "string"
},
"gitIgnoredAuthors": {
"description": "Additional Git authors which are ignored by Renovate. Must conform to [RFC5322](https://datatracker.ietf.org/doc/html/rfc5322).",
"type": "array",
"items": {
"type": "string"
}
},
"gitLabIgnoreApprovals": {
"description": "Ignore approval rules for MRs created by Renovate, which is useful for automerge.",
"type": "boolean",
"default": false
},
"gitNoVerify": {
"description": "Which Git commands will be run with the `--no-verify` option.",
"oneOf": [
{
"type": "array",
"items": {
"type": "string",
"enum": ["commit", "push"]
}
},
{
"type": "string",
"enum": ["commit", "push"]
}
],
"default": ["commit", "push"]
},
"gitPrivateKey": {
"description": "PGP key to use for signing Git commits.",
"type": "string"
},
"gitTimeout": {
"description": "Configure the timeout with a number of milliseconds to wait for a Git task.",
"type": "integer",
"default": 0
},
"gitUrl": {
"description": "Overrides the default resolution for Git remote, e.g. to switch GitLab from HTTPS to SSH-based.",
"type": "string",
"enum": ["default", "ssh", "endpoint"],
"default": "default"
},
"github-actions": {
"description": "Configuration object for the github-actions manager",
"type": "object",
"default": {
"fileMatch": [
"^(workflow-templates|\\.github/workflows)/[^/]+\\.ya?ml$",
"(^|/)action\\.ya?ml$"
]
},
"$ref": "#"
},
"githubTokenWarn": {
"description": "Display warnings about GitHub token not being set.",
"type": "boolean",
"default": true
},
"gitlabci": {
"description": "Configuration object for the gitlabci manager",
"type": "object",
"default": {
"fileMatch": ["\\.gitlab-ci\\.ya?ml$"]
},
"$ref": "#"
},
"gitlabci-include": {
"description": "Configuration object for the gitlabci-include manager",
"type": "object",
"default": {
"fileMatch": ["\\.gitlab-ci\\.ya?ml$"]
},
"$ref": "#"
},
"globalExtends": {
"description": "Configuration presets to use or extend for a self-hosted config.",
"type": "array",
"items": {
"type": "string"
}
},
"goGetDirs": {
"description": "Directory pattern to run `go get` on",
"type": "array",
"items": {
"type": "string"
},
"default": ["./..."]
},
"gomod": {
"description": "Configuration object for the gomod manager",
"type": "object",
"default": {
"fileMatch": ["(^|/)go\\.mod$"],
"pinDigests": false
},
"$ref": "#"
},
"gradle": {
"description": "Configuration object for the gradle manager",
"type": "object",
"default": {
"fileMatch": [
"\\.gradle(\\.kts)?$",
"(^|/)gradle\\.properties$",
"(^|/)gradle/.+\\.toml$",
"(^|/)buildSrc/.+\\.kt$",
"\\.versions\\.toml$",
"(^|/)versions.props$",
"(^|/)versions.lock$"
],
"timeout": 600,
"versioning": "gradle"
},
"$ref": "#"
},
"gradle-wrapper": {
"description": "Configuration object for the gradle-wrapper manager",
"type": "object",
"default": {