From c25520243373a4d7bef3649b64ba942b6ef12163 Mon Sep 17 00:00:00 2001 From: Harsh Raj <53043454+Harsh1s@users.noreply.github.com> Date: Tue, 5 Dec 2023 23:45:39 +0530 Subject: [PATCH] feat: Implement automated updates with Dependabot (#1451) * Feat: Implement automated updates with Dependabot * Feat: Implement automated updates with Dependabot #1451 * Feat: Implement automated updates with Dependabot #1451 * Feat: "Feat: Implement automated updates with Dependabot #1451" --- .github/dependabot.yaml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/dependabot.yaml diff --git a/.github/dependabot.yaml b/.github/dependabot.yaml new file mode 100644 index 00000000000..e7a30e0131b --- /dev/null +++ b/.github/dependabot.yaml @@ -0,0 +1,23 @@ +# Configuration for automated dependency updates using Dependabot +version: 2 +updates: + # Define the target package ecosystem + - package-ecosystem: "npm" + # Specify the root directory + directory: "/" + # Schedule automated updates to run weekly + schedule: + interval: "weekly" + # Labels to apply to Dependabot PRs + labels: + - "dependencies" + # Specify the target branch for PRs + target-branch: "develop" + # Include all minor updates in a single PR + grouping: + minor: + include: + - "*" + # Customize commit message prefix + commit-message: + prefix: "chore(deps):"