-
Notifications
You must be signed in to change notification settings - Fork 370
/
Copy pathdependabot.yml
42 lines (36 loc) · 1.16 KB
/
dependabot.yml
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
# Automatically open PRs to update outdated deps
# See https://docs.github.com/en/github/administering-a-repository/enabling-and-disabling-version-updates
version: 2
updates:
# Enable version updates for npm
- package-ecosystem: "cargo"
# Look for Cargo `.toml` and `.lock` files in the `root` directory
directory: "/"
# Check the cargo registry for updates every day (weekdays)
schedule:
interval: "weekly"
- package-ecosystem: "cargo"
directory: "modules"
schedule:
interval: "weekly"
- package-ecosystem: "cargo"
directory: "proto"
schedule:
interval: "weekly"
## Disable dependabot for `proto-compiler`.
## Rationale: we maintain the dependencies for proto-compiler
## manually, so that we update the proto-compiler binary
## (and the Cargo.lock file) only when we regenerate
## Rust types from the .proto files.
# - package-ecosystem: "cargo"
# directory: "proto-compiler"
# schedule:
# interval: "weekly"
- package-ecosystem: "cargo"
directory: "relayer"
schedule:
interval: "weekly"
- package-ecosystem: "cargo"
directory: "relayer-cli"
schedule:
interval: "weekly"