]> git.ipfire.org Git - thirdparty/paperless-ngx.git/commitdiff
Enable dependabot for repository (#86)
authorJohann Bauer <bauerj@bauerj.eu>
Fri, 18 Feb 2022 15:06:56 +0000 (16:06 +0100)
committerJohann Bauer <bauerj@bauerj.eu>
Wed, 2 Mar 2022 14:49:50 +0000 (15:49 +0100)
.github/dependabot.yml [new file with mode: 0644]

diff --git a/.github/dependabot.yml b/.github/dependabot.yml
new file mode 100644 (file)
index 0000000..0d64b9a
--- /dev/null
@@ -0,0 +1,22 @@
+# https://docs.github.com/en/code-security/supply-chain-security/keeping-your-dependencies-updated-automatically/configuration-options-for-dependency-updates#package-ecosystem
+
+version: 2
+updates:
+
+  # Enable version updates for npm
+  - package-ecosystem: "npm"
+    target-branch: "dev"
+    # Look for `package.json` and `lock` files in the `root` directory
+    directory: "/src-ui"
+    # Check the npm registry for updates every week
+    schedule:
+      interval: "weekly"
+
+  # Enable version updates for Python
+  - package-ecosystem: "pip"
+    target-branch: "dev"
+    # Look for a `Pipfile` in the `root` directory
+    directory: "/"
+    # Check for updates once a week
+    schedule:
+      interval: "weekly"