From 34581413b6b0b6f79c8f92c748cf9d3f06aa6571 Mon Sep 17 00:00:00 2001 From: Kevin Longmuir Date: Tue, 14 Apr 2026 11:31:37 -0400 Subject: [PATCH 1/2] chore: update dependabot config to ignore e2e --- .github/dependabot.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index a8e67cc4..fbee9ca5 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -6,7 +6,6 @@ updates: interval: "weekly" - package-ecosystem: "npm" - directory: "/e2e" - open-pull-requests-limit: 0 + directory: "/" schedule: interval: "daily" From 4c39996d6288e5d2652721abf06f2cffe6179831 Mon Sep 17 00:00:00 2001 From: Kevin Longmuir Date: Tue, 14 Apr 2026 11:35:51 -0400 Subject: [PATCH 2/2] fix: don't run CI on dependabot changes --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d1e9e2c9..7bb95cec 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -5,7 +5,7 @@ on: paths: - '**' # include everything by default - '!**/*.md' # ignore markdown files - - '!.github/workflows/**' # ignore all workflow files + - '!.github/**' # ignore all .github/ files - '.github/workflows/ci.yml' # except changes to ci.yml itself jobs: