Browse Source

Avoid sending update/delete release notice when it is draft (#29008) (#29025)

Backport #29008 by @yp05327

Fix #27157

Co-authored-by: yp05327 <576951401@qq.com>
tags/v1.21.6
Giteabot 3 months ago
parent
commit
8def405047
No account linked to committer's email address
1 changed files with 7 additions and 8 deletions
  1. 7
    8
      services/release/release.go

+ 7
- 8
services/release/release.go View File

@@ -278,15 +278,13 @@ func UpdateRelease(ctx context.Context, doer *user_model.User, gitRepo *git.Repo
}
}

if !isCreated {
notify_service.UpdateRelease(gitRepo.Ctx, doer, rel)
return nil
}

if !rel.IsDraft {
if !isCreated {
notify_service.UpdateRelease(gitRepo.Ctx, doer, rel)
return nil
}
notify_service.NewRelease(gitRepo.Ctx, rel)
}

return nil
}

@@ -351,7 +349,8 @@ func DeleteReleaseByID(ctx context.Context, repo *repo_model.Repository, rel *re
}
}

notify_service.DeleteRelease(ctx, doer, rel)

if !rel.IsDraft {
notify_service.DeleteRelease(ctx, doer, rel)
}
return nil
}

Loading…
Cancel
Save