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 015d5d6 commit 7d10c44Copy full SHA for 7d10c44
test/resources/scripts/pr_helper.sh
@@ -4,16 +4,25 @@ PR=159
4
gh pr checkout $PR
5
6
git pull origin release/release-v0.x
7
-
8
# npm install
9
npm install
10
-git push
11
+#COMMIT
+
12
+git push
13
# GIT PUSH and then checks ( validate )
14
# watching checks running
-watch -n 3 "gh pr checks $PR"
15
16
17
-#MERGE PR, delete branch and merge in place of other options
+#watch -n 3 "gh pr checks $PR"
+watch -n 3 "
+gh pr checks $PR; echo '---------------';
18
+echo 'PENDING:'
19
+gh pr checks $PR | grep -o pend | wc -w;
20
+echo
21
+echo 'PASSED:'
22
+gh pr checks $PR | grep -o pass | wc -w;
23
24
+echo 'FAILED:'
25
+gh pr checks $PR | grep -o fail | wc -w;
26
+";
27
+#MERGE PR
28
gh pr merge $PR -d -m
0 commit comments