Skip to content

Commit

Permalink
feat: added dependabot.yml (#342)
Browse files Browse the repository at this point in the history
  • Loading branch information
FinsaasGH authored Jul 1, 2024
1 parent 2007ccd commit 25e9a4f
Showing 1 changed file with 106 additions and 0 deletions.
106 changes: 106 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,106 @@
# Basic `dependabot.yml` file with
# minimum configuration for two package managers

version: 2
updates:
# Enable version updates for node
- package-ecosystem: "cargo"
directory: "/node"
# Check the cargo registry for updates every day (weekdays)
schedule:
interval: "daily"
time: '14:00'
timezone: 'Etc/UTC'
allow:
- dependency-name: "*"
dependency-type: "direct"
ignore:
- dependency-name: "automap"
- dependency-name: "masq_lib"
- dependency-name: "actix"
- dependency-name: "tokio"
- dependency-name: "clap"
- dependency-name: "sodiumoxide"
- dependency-name: "web3"
- dependency-name: "websocket"
groups:
patch:
update-types:
- "patch"
minor:
update-types:
- "minor"
target-branch: 'master'
open-pull-requests-limit: 2

# Enable version updates for masq
- package-ecosystem: "cargo"
directory: "/masq"
# Check the cargo registry for updates every day (weekdays)
schedule:
interval: "daily"
time: '14:00'
timezone: 'Etc/UTC'
allow:
- dependency-name: "*"
dependency-type: "direct"
ignore:
- dependency-name: "masq_lib"
- dependency-name: "clap"
- dependency-name: "websocket"
groups:
patch:
update-types:
- "patch"
minor:
update-types:
- "minor"
target-branch: 'master'
open-pull-requests-limit: 2

# Enable version updates for masq_lib
- package-ecosystem: "cargo"
directory: "/masq_lib"
# Check the cargo registry for updates every day (weekdays)
schedule:
interval: "daily"
time: '14:00'
timezone: 'Etc/UTC'
allow:
- dependency-name: "*"
dependency-type: "direct"
ignore:
- dependency-name: "clap"
- dependency-name: "websocket"
groups:
patch:
update-types:
- "patch"
minor:
update-types:
- "minor"
target-branch: 'master'
open-pull-requests-limit: 2

# Enable version updates for automap
- package-ecosystem: "cargo"
directory: "/automap"
# Check the cargo registry for updates every day (weekdays)
schedule:
interval: "daily"
time: '14:00'
timezone: 'Etc/UTC'
allow:
- dependency-name: "*"
dependency-type: "direct"
ignore:
- dependency-name: "masq_lib"
groups:
patch:
update-types:
- "patch"
minor:
update-types:
- "minor"
target-branch: 'master'
open-pull-requests-limit: 2

0 comments on commit 25e9a4f

Please sign in to comment.