Skip to content

Commit 39cc725

Browse files
GiteaBotappleboywxiaoguang
authored
feat(action): issue change title notifications (#33050) (#33065)
Backport #33050 by appleboy action file as below: ```yaml name: Semantic Pull Request on: pull_request_target: types: [edited] ``` Signed-off-by: Bo-Yi Wu <[email protected]> Co-authored-by: Bo-Yi Wu <[email protected]> Co-authored-by: wxiaoguang <[email protected]>
1 parent bc83fb2 commit 39cc725

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

services/actions/notifier.go

+8
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,15 @@ func (n *actionsNotifier) NewIssue(ctx context.Context, issue *issues_model.Issu
5858
// IssueChangeContent notifies change content of issue
5959
func (n *actionsNotifier) IssueChangeContent(ctx context.Context, doer *user_model.User, issue *issues_model.Issue, oldContent string) {
6060
ctx = withMethod(ctx, "IssueChangeContent")
61+
n.notifyIssueChangeWithTitleOrContent(ctx, doer, issue)
62+
}
63+
64+
func (n *actionsNotifier) IssueChangeTitle(ctx context.Context, doer *user_model.User, issue *issues_model.Issue, oldTitle string) {
65+
ctx = withMethod(ctx, "IssueChangeTitle")
66+
n.notifyIssueChangeWithTitleOrContent(ctx, doer, issue)
67+
}
6168

69+
func (n *actionsNotifier) notifyIssueChangeWithTitleOrContent(ctx context.Context, doer *user_model.User, issue *issues_model.Issue) {
6270
var err error
6371
if err = issue.LoadRepo(ctx); err != nil {
6472
log.Error("LoadRepo: %v", err)

0 commit comments

Comments
 (0)