Skip to content

Commit fe127b5

Browse files
committed
fix: update PR handling to ignore dependabot in addition to maintainer
1 parent 0758871 commit fe127b5

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/adventurelog-bot.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -61,9 +61,9 @@ jobs:
6161
await safeClosePr();
6262
}
6363
64-
// Ignore specific user
65-
if (context.actor === "seanmorley15") {
66-
console.log("Skipping maintainer PR");
64+
// Ignore PRs created by the maintainer to avoid blocking their work, as well as dependabot
65+
if (context.actor === "seanmorley15" || context.actor === "dependabot") {
66+
console.log("Skipping maintainer or dependabot PR");
6767
return;
6868
}
6969

0 commit comments

Comments
 (0)