We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0758871 commit fe127b5Copy full SHA for fe127b5
.github/workflows/adventurelog-bot.yml
@@ -61,9 +61,9 @@ jobs:
61
await safeClosePr();
62
}
63
64
- // Ignore specific user
65
- if (context.actor === "seanmorley15") {
66
- 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");
67
return;
68
69
0 commit comments