From e1fdda65febe49e8fbd233fa0bc590f748eef28c Mon Sep 17 00:00:00 2001 From: Armin Briegel <1933192+scriptingosx@users.noreply.github.com> Date: Fri, 2 Sep 2022 11:42:56 +0200 Subject: [PATCH] new test-pr.sh script --- utils/test-pr.sh | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/utils/test-pr.sh b/utils/test-pr.sh index 24ef81f..7d7340e 100755 --- a/utils/test-pr.sh +++ b/utils/test-pr.sh @@ -11,8 +11,6 @@ label=${2:?"arg 2 is label"} gh pr checkout $pr_num -b "pr/$pr_num" - - if ! utils/assemble.sh $label; then echo "something went wrong, stopping here" else @@ -20,8 +18,8 @@ else echo "All good! merging..." echo -# git checkout main -# git merge "pr/$pr_num" -m "new label: $label" -# git branch -d "pr/$pr_num" -# gh pr comment $pr_num --body 'Thank you!' + git checkout main + git merge "pr/$pr_num" -m "new label: $label" + git branch -d "pr/$pr_num" + gh pr comment $pr_num --body 'Thank you!' fi