Skip to content

Commit

Permalink
Add proper spacing before You are here
Browse files Browse the repository at this point in the history
  • Loading branch information
gsmet committed Jan 10, 2024
1 parent 47210e0 commit 5706ba4
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ public boolean shouldPause(Context context, Commands commands, ReleaseInformatio

comment.append(
"\nPlease approve with a `" + Command.YES.getFullCommand() + "` comment if you want to continue with the release.\n");
comment.append("\nIf not, simply close this issue.");
comment.append("\nIf not, simply close this issue.\n\n");
comment.append(Progress.youAreHere(releaseInformation, releaseStatus));
commands.setOutput(Outputs.INTERACTION_COMMENT, comment.toString());
return true;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ public boolean shouldPause(Context context, Commands commands, ReleaseInformatio

comment.append(
"Once everything has been merged to branch `" + platformReleaseBranch + "`, you can continue with the release by adding a `"
+ Command.CONTINUE.getFullCommand() + "` comment.");
+ Command.CONTINUE.getFullCommand() + "` comment.\n\n");
comment.append(Progress.youAreHere(releaseInformation, releaseStatus));

commands.setOutput(Outputs.INTERACTION_COMMENT, comment.toString());
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ public boolean shouldPause(Context context, Commands commands, ReleaseInformatio
+ Command.CONTINUE.getFullCommand() + "` comment.");
}

comment.append(Progress.youAreHere(releaseInformation, releaseStatus));
comment.append("\n\n" + Progress.youAreHere(releaseInformation, releaseStatus));

commands.setOutput(Outputs.INTERACTION_COMMENT, comment.toString());
return true;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ public boolean shouldPause(Context context, Commands commands, ReleaseInformatio
+ Command.CONTINUE.getFullCommand() + "` comment.");
}

comment.append(Progress.youAreHere(releaseInformation, releaseStatus));
comment.append("\n\n" + Progress.youAreHere(releaseInformation, releaseStatus));

commands.setOutput(Outputs.INTERACTION_COMMENT, comment.toString());
return true;
Expand Down

0 comments on commit 5706ba4

Please sign in to comment.