From 48022e2918841a4314d388fea3ec7434628d254a Mon Sep 17 00:00:00 2001 From: Ghian Date: Sun, 24 Nov 2024 23:48:56 +0800 Subject: [PATCH] chore: add dependabot github action for automatic dependency updates (#16) Added a **GitHub Action** for **Dependabot** to automate the process of updating dependencies. --- .github/dependabot.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..471d60d --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,23 @@ +version: 2 +updates: + # Update npm dependencies in the client directory + - package-ecosystem: "npm" + directory: / + schedule: + interval: "daily" + commit-message: + prefix: "chore" + include: "scope" + reviewers: + - Fingertips18 + + # Update GitHub Actions dependencies in the root directory + - package-ecosystem: "github-actions" + directory: / + schedule: + interval: "weekly" + commit-message: + prefix: "chore" + include: "scope" + reviewers: + - Fingertips18