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 581088d commit 9f0acf7Copy full SHA for 9f0acf7
tools/checker
@@ -0,0 +1,10 @@
1
+#!/usr/bin/bash
2
+# Very simple tool to help manage floods of PRs
3
+for I in `gh pr list|cut -f 1`; do
4
+ gh pr diff $I
5
+ read -p"Accept $I? " foo
6
+ if [[ "$foo" == "y" ]];
7
+ then gh pr merge -m $I
8
+ fi
9
+done
10
+
0 commit comments