fix: update PR handling to ignore dependabot in addition to maintainer

This commit is contained in:
Sean Morley
2026-04-04 22:19:37 -04:00
parent 0758871582
commit fe127b5097

View File

@@ -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;
}