From 1450d03fb0d4871371005fd0f776d3c0b12abe64 Mon Sep 17 00:00:00 2001 From: Ghian Date: Sat, 23 Nov 2024 23:50:45 +0800 Subject: [PATCH] chore: Update dependabot to include reviewer (myself) (#30) Updated the **Dependabot** configuration to automatically include myself as the reviewer for all generated PRs. --- .github/dependabot.yml | 24 +++++++++++++++--------- 1 file changed, 15 insertions(+), 9 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 540756d..77d7ce3 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -1,6 +1,6 @@ version: 2 updates: - # Update Go dependencies for the root directory + # Update Go dependencies in the root directory - package-ecosystem: "gomod" directory: / schedule: @@ -8,21 +8,27 @@ updates: commit-message: prefix: "chore" # Use 'chore' prefix for the commit message include: "scope" # Include the scope (dependency name) in the commit message + reviewers: + - Fingertips18 - # Update npm dependencies for the client directory + # Update npm dependencies in the client directory - package-ecosystem: "npm" directory: /client schedule: - interval: "daily" # Check for updates every day + interval: "daily" commit-message: - prefix: "chore" # Use 'chore' prefix for the commit message - include: "scope" # Include the scope (dependency name) in the commit message + prefix: "chore" + include: "scope" + reviewers: + - Fingertips18 - # Update GitHub Actions dependencies for the root directory + # Update GitHub Actions dependencies in the root directory - package-ecosystem: "github-actions" directory: / schedule: - interval: "weekly" # Check for updates once a week + interval: "weekly" commit-message: - prefix: "chore" # Use 'chore' prefix for the commit message - include: "scope" # Include the scope (dependency name) in the commit message + prefix: "chore" + include: "scope" + reviewers: + - Fingertips18