Skip to content

Commit

Permalink
Remove debug output...
Browse files Browse the repository at this point in the history
gsmet committed Apr 10, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
1 parent 2fc6454 commit 16552c7
Showing 1 changed file with 0 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -47,12 +47,7 @@ void checkPullRequestEditorialRules(@PullRequest.Opened GHEventPayload.PullReque
String originalTitle = pullRequest.getTitle();
String normalizedTitle = GHPullRequests.normalizeTitle(originalTitle, baseBranch);

System.out.println("baseBranch: " + baseBranch);
System.out.println("originalTitle: " + originalTitle);
System.out.println("normalizedTitle: " + normalizedTitle);

if (!originalTitle.equals(normalizedTitle)) {
System.out.println("totoz");
pullRequest.setTitle(normalizedTitle);
}

0 comments on commit 16552c7

Please sign in to comment.