From: Johann Bauer Date: Fri, 18 Feb 2022 15:06:56 +0000 (+0100) Subject: Enable dependabot for repository (#86) X-Git-Tag: ngx-1.6.0-rc1~21 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9484eb9f6b9845a46eb86dc82d02239d700433f6;p=thirdparty%2Fpaperless-ngx.git Enable dependabot for repository (#86) --- diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000000..0d64b9a155 --- /dev/null +++ b/.github/dependabot.yml @@ -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"