Skip to content
This repository was archived by the owner on May 13, 2022. It is now read-only.

Commit 2ccd5ad

Browse files
committed
Improve messages during the flow
1 parent 6821962 commit 2ccd5ad

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

bashlava.sh

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ function edge {
5151
git checkout -b edge
5252
git push --set-upstream origin edge -f
5353
my_message="<edge> was freshly branched out from ${default_branch}" App_Green
54+
echo && my_message="Next step: code something and 'c' " App_Green
5455
}
5556

5657
function commit {
@@ -59,7 +60,7 @@ function commit {
5960
git add -A
6061
git commit -m "${input_2}"
6162
git push
62-
echo && my_message="Next step: 'c' OR 's' OR 'pr' " App_Green
63+
echo && my_message="Next step: 'c' - 'pr' " App_Green
6364
}
6465

6566
function pr {
@@ -72,7 +73,7 @@ function pr {
7273

7374
gh pr create --fill --title "${_pr_title}" --base "${default_branch}" &&\
7475
gh pr view --web
75-
echo && my_message="Next step: check 'ci' OR 'mrg' " App_Green
76+
echo && my_message="Next step: 'ci' - 'mrg' " App_Green
7677
# if needed check ./docs/pr_upstream_issues.md
7778
}
7879

@@ -151,7 +152,7 @@ function tag {
151152
gh release create && sleep 4
152153
App_Show_Version
153154
App_Show_Release
154-
echo && my_message="Next step: 'e' " App_Green
155+
echo && my_message="Next step: start over from 'e' " App_Green
155156
}
156157

157158
function squash {
@@ -171,7 +172,7 @@ function squash {
171172
git commit -m "${input_3} /sq"
172173
git push
173174
log
174-
echo && my_message="Next step: 'c' OR 's' OR 'pr' " App_Green
175+
echo && my_message="Next step: 'c' - 'pr' " App_Green
175176
}
176177

177178
function test {

0 commit comments

Comments
 (0)