diff options
author | 2024-03-14 12:01:33 +0000 | |
---|---|---|
committer | 2024-03-14 12:01:33 +0000 | |
commit | a7bd9e70f6a8fb3083a7650374740490e81e4c4d (patch) | |
tree | e76e928bd20df6e21fabbeae80033315b99c9718 | |
parent | Merge pull request #198 from python-discord/bump-ci (diff) |
Add dependabot config for docker & CI (#201)
-rw-r--r-- | .github/dependabot.yaml | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/.github/dependabot.yaml b/.github/dependabot.yaml new file mode 100644 index 0000000..1b5b672 --- /dev/null +++ b/.github/dependabot.yaml @@ -0,0 +1,19 @@ +version: 2 +updates: + - package-ecosystem: "docker" + directory: "/" + schedule: + interval: "daily" + groups: + docker-dependencies: + patterns: + - "*" + + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "daily" + groups: + ci-dependencies: + patterns: + - "*" |