You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@streampipes.apache.org by bo...@apache.org on 2022/12/27 09:59:06 UTC

[streampipes] 01/01: add maven and pip to denpendabot config

This is an automated email from the ASF dual-hosted git repository.

bossenti pushed a commit to branch chore/extend-dependabot
in repository https://gitbox.apache.org/repos/asf/streampipes.git

commit d8e927f93654cf1c7ebe2dc00525bb100aed5bbd
Author: bossenti <bo...@posteo.de>
AuthorDate: Tue Dec 27 10:58:54 2022 +0100

    add maven and pip to denpendabot config
---
 .github/dependabot.yml | 16 +++++++++++++++-
 1 file changed, 15 insertions(+), 1 deletion(-)

diff --git a/.github/dependabot.yml b/.github/dependabot.yml
index cab91891b..1ce3044c9 100644
--- a/.github/dependabot.yml
+++ b/.github/dependabot.yml
@@ -15,10 +15,24 @@
 
 version: 2
 updates:
+  - package-ecosystem: "maven"
+    directory: "/"
+    schedule:
+      interval: "daily"
+    ignore:
+      - dependency-name: "*"
+        update-types: [ "version-update:semver-patch" ]
   - package-ecosystem: "npm"
     directory: "/ui"
     schedule:
       interval: "daily"
     ignore:
       - dependency-name: "*"
-        update-types: ["version-update:semver-patch"]
\ No newline at end of file
+        update-types: ["version-update:semver-patch"]
+  - package-ecosystem: "pip"
+    directory: "/streampipes-client-python"
+    schedule:
+      interval: "daily"
+    ignore:
+      - dependency-name: "*"
+        update-types: [ "version-update:semver-patch" ]
\ No newline at end of file