From e17eb471e76793dcab65b61ec2b5845f272d09ba Mon Sep 17 00:00:00 2001 From: Joe Fusco Date: Mon, 4 May 2026 09:17:10 -0400 Subject: [PATCH 1/2] Create dependabot.yml --- .github/dependabot.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 00000000..7bcdd33e --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,24 @@ +version: 2 +updates: + - package-ecosystem: "npm" + directory: "/" + schedule: + interval: "weekly" + open-pull-requests-limit: 10 + groups: + production-dependencies: + dependency-type: "production" + patterns: ["*"] + update-types: ["minor", "patch"] + development-dependencies: + dependency-type: "development" + patterns: ["*"] + update-types: ["minor", "patch"] + + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "weekly" + groups: + actions: + patterns: ["*"] From 0db56830f9be1e85b578469a3fc6d9ea12195cc2 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 4 May 2026 13:24:58 +0000 Subject: [PATCH 2/2] Restrict actions group to minor and patch updates only Agent-Logs-Url: https://github.com/wpengine/faustjs.org/sessions/5d89e734-9a84-481e-afdd-c761ddd42e0c Co-authored-by: josephfusco <6676674+josephfusco@users.noreply.github.com> --- .github/dependabot.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 7bcdd33e..493079d0 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -22,3 +22,4 @@ updates: groups: actions: patterns: ["*"] + update-types: ["minor", "patch"]