Avoid run change title process when the title is same (#27467) (#27557)

Backport #27467 manually.
This commit is contained in:
yp05327 2023-10-10 16:01:24 +09:00 committed by GitHub
parent 1d4c193df5
commit e6d1afaee3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 0 deletions

View File

@ -53,6 +53,10 @@ func ChangeTitle(ctx context.Context, issue *issues_model.Issue, doer *user_mode
oldTitle := issue.Title
issue.Title = title
if oldTitle == title {
return nil
}
if err = issues_model.ChangeIssueTitle(ctx, issue, doer, oldTitle); err != nil {
return
}