Skip to content

Commit

Permalink
Merge pull request #61 from heydocode/patch-1
Browse files Browse the repository at this point in the history
Add dependabot support for all internal crates
  • Loading branch information
theaddonn authored Nov 20, 2024
2 parents b3baa1d + a5c93dd commit 9bc5fbc
Showing 1 changed file with 50 additions and 1 deletion.
51 changes: 50 additions & 1 deletion .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,56 @@

version: 2
updates:
# Main crate dependencies
- package-ecosystem: "cargo" # See documentation for possible values
directory: "/" # Location of package manifests
directory: "/" # Location of main package manifest
schedule:
interval: "daily"

# INTERNAL CRATES DEPENDABOT CHECKS:
# (Fix issue #57)

- package-ecosystem: "cargo"
directory: "/crates/addon" # Location of internal crate "addon"
schedule:
interval: "daily"

- package-ecosystem: "cargo"
directory: "/crates/core" # Location of internal crate "core"
schedule:
interval: "daily"

- package-ecosystem: "cargo"
directory: "/crates/form" # Location of internal crate "form"
schedule:
interval: "daily"

- package-ecosystem: "cargo"
directory: "/crates/paletted_storage" # Location of internal crate "paletted_storage"
schedule:
interval: "daily"

- package-ecosystem: "cargo"
directory: "/crates/proto" # Location of internal crate "proto"
schedule:
interval: "daily"

- package-ecosystem: "cargo"
directory: "/crates/proto_core" # Location of internal crate "proto_core"
schedule:
interval: "daily"

- package-ecosystem: "cargo"
directory: "/crates/proto_macros" # Location of internal crate "proto_macros"
schedule:
interval: "daily"

- package-ecosystem: "cargo"
directory: "/crates/shared" # Location of internal crate "shared"
schedule:
interval: "daily"

- package-ecosystem: "cargo"
directory: "/crates/world" # Location of internal crate "world"
schedule:
interval: "daily"

0 comments on commit 9bc5fbc

Please sign in to comment.