Skip to content

Commit

Permalink
👷 Configure dependabot to manage pip dependencies for each plugin (#119)
Browse files Browse the repository at this point in the history
Signed-off-by: ff137 <ff137@proton.me>
  • Loading branch information
ff137 authored Feb 22, 2024
1 parent adf33f2 commit 31095b8
Showing 1 changed file with 51 additions and 3 deletions.
54 changes: 51 additions & 3 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# For details on how this file works refer to:
# - https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file
# For details on how this file works refer to:
# - https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file
version: 2
updates:
# Maintain dependencies for GitHub Actions
Expand All @@ -11,4 +11,52 @@ updates:
interval: weekly
groups:
all-actions:
patterns: [ "*" ]
patterns: ["*"]

# Maintain pip dependencies for basicmessage_storage plugin
- package-ecosystem: pip
directory: /basicmessage_storage
schedule:
interval: daily

# Maintain pip dependencies for connection_update plugin
- package-ecosystem: pip
directory: /connection_update
schedule:
interval: daily

# Maintain pip dependencies for kafka_events plugin
- package-ecosystem: pip
directory: /kafka_events
schedule:
interval: daily

# Maintain pip dependencies for multitenant_provider plugin
- package-ecosystem: pip
directory: /multitenant_provider
schedule:
interval: daily

# Maintain pip dependencies for oid4vci plugin
- package-ecosystem: pip
directory: /oid4vci
schedule:
interval: daily

# Maintain pip dependencies for plugin_globals
- package-ecosystem: pip
directory: /plugin_globals
schedule:
interval: daily

# Maintain pip dependencies for redis_events plugin
- package-ecosystem: pip
directory: /redis_events
schedule:
interval: daily

# Maintain pip dependencies for rpc plugin
- package-ecosystem: pip
directory: /rpc
schedule:
interval: daily

0 comments on commit 31095b8

Please sign in to comment.