From fe127b5097efcd11b2541cfdc799eab97833cba6 Mon Sep 17 00:00:00 2001 From: Sean Morley Date: Sat, 4 Apr 2026 22:19:37 -0400 Subject: [PATCH] fix: update PR handling to ignore dependabot in addition to maintainer --- .github/workflows/adventurelog-bot.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/adventurelog-bot.yml b/.github/workflows/adventurelog-bot.yml index d03a9c31..567720eb 100644 --- a/.github/workflows/adventurelog-bot.yml +++ b/.github/workflows/adventurelog-bot.yml @@ -61,9 +61,9 @@ jobs: await safeClosePr(); } - // Ignore specific user - if (context.actor === "seanmorley15") { - console.log("Skipping maintainer PR"); + // Ignore PRs created by the maintainer to avoid blocking their work, as well as dependabot + if (context.actor === "seanmorley15" || context.actor === "dependabot") { + console.log("Skipping maintainer or dependabot PR"); return; }