Skip to content

Commit

Permalink
Increment ordinal after continue
Browse files Browse the repository at this point in the history
  • Loading branch information
gsmet committed Nov 24, 2023
1 parent cdcbd99 commit cf119d8
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/main/java/io/quarkus/bot/release/ReleaseAction.java
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,8 @@ private void handleSteps(Context context, Commands commands, GHIssue issue, Upda
if (stepHandler.shouldContinue(releaseInformation, currentReleaseStatus, issueComment)) {
react(commands, issueComment, ReactionContent.PLUS_ONE);
currentReleaseStatus = currentReleaseStatus.progress(StepStatus.COMPLETED);
updateReleaseStatus(issue, updatedIssueBody, currentReleaseStatus);
initialStepOrdinal++;
} else {
react(commands, issueComment, ReactionContent.CONFUSED);
return;
Expand Down

0 comments on commit cf119d8

Please sign in to comment.