-
Notifications
You must be signed in to change notification settings - Fork 8
/
.dependabot.toml
86 lines (71 loc) · 2.99 KB
/
.dependabot.toml
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
########################################################################################################################
# Branches
########################################################################################################################
# By default only run dependabot on a default branch
branches = [
"${default}" # master/main
]
########################################################################################################################
# Updaters
########################################################################################################################
## Options for `schedule` are daily or weekly only. No other options available at this time.
## More details at https://gitlab-master.nvidia.com/omniverse/repo/services/dependabot/
# packman updater
[updater.packman]
enabled = true
type = "packman_update"
schedule = "daily"
mr_title = "bump packman"
required_paths = ["tools/packman/packman.cmd"]
dependabot_branch_name = "update-packman"
# repo tools updater (all at once, to major version)
[updater.repo_tools]
enabled = true
type = "repo_update"
schedule = "daily"
mr_title = "bump repo tools"
repo_update_args = ["repo_", "--major"]
dependabot_branch_name = "update-repo-tools"
[updater.rtx_remix_omni_core_materials]
enabled = true
type = "repo_update"
schedule = "daily"
mr_title = "bump rtx-remix-omni_core_materials"
repo_update_args = ["rtx-remix-omni_core_materials", "--major"]
required_paths = ["deps/target-deps.packman.xml"]
dependabot_branch_name = "update-rtx-remix-omni_core_materials"
[updater.rtx-remix-remix_runtime]
enabled = true
type = "repo_update"
schedule = "daily"
mr_title = "bump rtx-remix-remix_runtime"
repo_update_args = ["rtx-remix-remix_runtime", "--major", "--include-pre-release"]
required_paths = ["deps/install-deps.packman.xml"]
dependabot_branch_name = "update-rtx-remix-remix_runtime"
[updater.rtx-remix-hdremix]
enabled = true
type = "repo_update"
schedule = "daily"
mr_title = "bump rtx-remix-hdremix"
repo_update_args = ["rtx-remix-hdremix", "--major"]
required_paths = ["deps/install-deps.packman.xml"]
dependabot_branch_name = "update-rtx-remix-hdremix"
## Kit SDK updater
#[updater.kit_sdk]
#enabled = true
#type = "repo_update"
#schedule = "weekly"
#mr_title = "bump kit-sdk"
#repo_update_args = ["kit-"]
#required_paths = ["deps/kit-sdk.packman.xml"]
#dependabot_branch_name = "update-kit-sdk"
########################################################################################################################
# An example of a custom updater for other repos to place in their .dependabot.toml
########################################################################################################################
# Specific dependency (kit-kernel-base) daily updater
# [updater.kit_kernel_base]
# type = "repo_update"
# schedule = "daily"
# mr_title = "bump kit-kernel-base"
# repo_update_args = ["kit-kernel-base"]
########################################################################################################################