diff options
author | Wladimir Kirianov <wladefant@gmail.com> | 2023-02-02 21:45:57 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-02 21:45:57 +0000 |
commit | 20f946539188aeb994a8ea0c0349356ac33198c6 (patch) | |
tree | 589de8be2a00abef500bf6eb4d4dca902f47a953 | |
parent | 393756d0d5b2a5f6622932a5cfe29231cee04d18 (diff) | |
download | infinity-for-reddit-20f946539188aeb994a8ea0c0349356ac33198c6.tar infinity-for-reddit-20f946539188aeb994a8ea0c0349356ac33198c6.tar.gz infinity-for-reddit-20f946539188aeb994a8ea0c0349356ac33198c6.tar.bz2 infinity-for-reddit-20f946539188aeb994a8ea0c0349356ac33198c6.tar.lz infinity-for-reddit-20f946539188aeb994a8ea0c0349356ac33198c6.tar.xz infinity-for-reddit-20f946539188aeb994a8ea0c0349356ac33198c6.tar.zst infinity-for-reddit-20f946539188aeb994a8ea0c0349356ac33198c6.zip |
added reviewers and prefix to the dependabot.yml
-rw-r--r-- | .github/dependabot.yml | 20 |
1 files changed, 16 insertions, 4 deletions
diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 06c28976..7d68ffb9 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -1,11 +1,23 @@ version: 2 updates: + # Updates for Gradle dependencies used in the app - package-ecosystem: gradle - directory: / + directory: "/" schedule: - interval: daily + interval: "daily" + commit-message: + prefix: "⬆[Gradle]" + reviewers: + - "Wladefant" + - "Docile-Alligator" + # Updates for GitHub Actions used in the repository - package-ecosystem: github-actions - directory: / + directory: "/" schedule: - interval: daily + interval: "weekly" + commit-message: + prefix: "⬆[GitHub Actions]" + reviewers: + - "Wladefant" + - "Docile-Alligator" |