From a2ca9b07b280bdf2eb6641bc705d6d4fda7adb18 Mon Sep 17 00:00:00 2001 From: h1dden-da3m0n <33120068+h1dden-da3m0n@users.noreply.github.com> Date: Tue, 15 Dec 2020 22:03:48 +0100 Subject: [PATCH] add dependabot config --- .github/dependabot.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..982bc1a --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,26 @@ +version: 2 +updates: + # Fetch and update latest `nuget` pkgs + - package-ecosystem: "nuget" + directory: "/" + schedule: + interval: "daily" + time: "00:00" + open-pull-requests-limit: 10 + commit-message: + prefix: "chore" + include: "scope" + + # Fetch and update latest `github-actions` pkgs + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "weekly" + time: "00:00" + labels: + - "skip-changelog" + open-pull-requests-limit: 10 + commit-message: + prefix: "ci" + include: "scope" +