Skip to content

Commit 9f0acf7

Browse files
committed
Add very simple PR manager
1 parent 581088d commit 9f0acf7

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

tools/checker

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)