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 8848045 commit 5664da2Copy full SHA for 5664da2
.gitignore
@@ -1,2 +1,3 @@
1
+.idea
2
.env
3
node_modules/
lib/merge.js
@@ -345,7 +345,8 @@ function checkMergeError(e) {
345
const m = e ? e.message || "" : "";
346
if (
347
m.includes("review is required by reviewers with write access") ||
348
- m.includes("reviews are required by reviewers with write access")
+ m.includes("reviews are required by reviewers with write access") ||
349
+ m.includes("API rate limit exceeded")
350
) {
351
logger.info("Cannot merge PR:", m);
352
return "failure";
0 commit comments