From 99d7e44dab752dafe8b58bd81380c3a4abe53adf Mon Sep 17 00:00:00 2001 From: Ricardo Esteves Date: Wed, 17 Jan 2024 20:39:30 +0000 Subject: [PATCH] chore: :wrench: Type: Chore | Scope: .github/dependabot.yml | Title: Update dependabot configuration Description: -This commit updates the dependabot configuration in the .github/dependabot.yml file. - The schedule for npm package updates has been changed from weekly to daily. - This update ensures that the project dependencies are checked more frequently, allowing for quicker updates and improved security. Changeset: .github/dependabot.yml: Changed the update schedule for npm packages from weekly to daily. Footer: Co-authored-by: Ricardo Esteves 30535937+RicardoGEsteves@users.noreply.github.com --- .github/dependabot.yml | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index c519111..11d76e4 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -3,14 +3,13 @@ updates: - package-ecosystem: "npm" directory: "/" schedule: - interval: "weekly" - day: "sunday" - time: "16:00" + interval: "daily" open-pull-requests-limit: 30 + ignore: + - dependency-name: "pnpm" + - package-ecosystem: "github-actions" directory: "/" schedule: - interval: "weekly" - day: "sunday" - time: "16:00" + interval: "daily" open-pull-requests-limit: 30