Skip to content

Commit 6da48c8

Browse files
authored
Adds members excluded from workspace cargo.toml to dependabot (#168)
* Adds members excluded from workspace cargo.toml to dependabot Signed-off-by: Simon Davies <simongdavies@users.noreply.github.com> * ignore wasmtime major and minor versions Signed-off-by: Simon Davies <simongdavies@users.noreply.github.com> --------- Signed-off-by: Simon Davies <simongdavies@users.noreply.github.com>
1 parent 6ce0f3a commit 6da48c8

File tree

1 file changed

+39
-0
lines changed

1 file changed

+39
-0
lines changed

.github/dependabot.yml

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,3 +16,42 @@ updates:
1616
target-branch: "main"
1717
labels:
1818
- "kind/dependencies"
19+
ignore:
20+
- dependency-name: "wasmtime"
21+
update-types: ["version-update:semver-minor", "version-update:semver-major"]
22+
# Add entries for excluded workspace members
23+
- package-ecosystem: "cargo"
24+
directory: "/src/wasm_runtime"
25+
schedule:
26+
interval: "daily"
27+
time: "03:00"
28+
target-branch: "main"
29+
labels:
30+
- "kind/dependencies"
31+
ignore:
32+
- dependency-name: "wasmtime"
33+
update-types: ["version-update:semver-minor", "version-update:semver-major"]
34+
- package-ecosystem: "cargo"
35+
directory: "/src/rust_wasm_samples"
36+
schedule:
37+
interval: "daily"
38+
time: "03:00"
39+
target-branch: "main"
40+
labels:
41+
- "kind/dependencies"
42+
- package-ecosystem: "cargo"
43+
directory: "/src/hyperlight_wasm_macro"
44+
schedule:
45+
interval: "daily"
46+
time: "03:00"
47+
target-branch: "main"
48+
labels:
49+
- "kind/dependencies"
50+
- package-ecosystem: "cargo"
51+
directory: "/src/component_sample"
52+
schedule:
53+
interval: "daily"
54+
time: "03:00"
55+
target-branch: "main"
56+
labels:
57+
- "kind/dependencies"

0 commit comments

Comments
 (0)