diff options
author | Scott <[email protected]> | 2020-07-06 20:26:27 +0100 |
---|---|---|
committer | GitHub <[email protected]> | 2020-07-06 20:26:27 +0100 |
commit | bbd1fd7ce915cb3130be9040bdfd15ea3aa31f1d (patch) | |
tree | b525737f2f256dca7cc4d463152989e1faecdea4 /.github | |
parent | ce9138d59ea6d437b2a64e5ac408a3ef18d0c3a3 (diff) |
Create dependabot.yml
Experimenting with dependabot.
Diffstat (limited to '.github')
-rw-r--r-- | .github/dependabot.yml | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 000000000..367ccea11 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,15 @@ +version: 2 +updates: + # Maintain dependencies for GitHub Actions + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "weekly" + open-pull-requests-limit: 4 + + # Maintain dependencies for Windows GUI nuget + - package-ecosystem: "nuget" + directory: "win/CS" + schedule: + interval: "weekly" + open-pull-requests-limit: 4 |