From b4ab6093de7c2ae1dc0b952cf8e4a5c8f7da1a8a Mon Sep 17 00:00:00 2001 From: TommyLike Date: Thu, 3 Sep 2020 17:07:42 +0800 Subject: [PATCH] Add tips on lgtm and approve command --- pkg/cibot/approve.go | 3 ++- pkg/cibot/lgtm.go | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/pkg/cibot/approve.go b/pkg/cibot/approve.go index 0a46914..7b752c7 100644 --- a/pkg/cibot/approve.go +++ b/pkg/cibot/approve.go @@ -10,7 +10,8 @@ import ( const ( approvedAddedMessage = `***approved*** is added in this pull request by: ***%s***. :wave: ` - approvedRemovedMessage = `***approved*** is removed in this pull request by: ***%s***. :flushed: ` + approvedRemovedMessage = `***approved*** is removed in this pull request by: ***%s***. :flushed: +**NOTE:**: If you find this pull request unmerged while all conditions meets, you are encouraged use command: "/check-pr" to try it again. :smile: ` approvedAddNoPermissionMessage = `***%s*** has no permission to add ***approved*** in this pull request. :astonished: please contact to the collaborators in this repository.` approvedRemoveNoPermissionMessage = `***%s*** has no permission to remove ***approved*** in this pull request. :astonished: diff --git a/pkg/cibot/lgtm.go b/pkg/cibot/lgtm.go index 7776d5b..ca913c5 100644 --- a/pkg/cibot/lgtm.go +++ b/pkg/cibot/lgtm.go @@ -12,7 +12,8 @@ import ( const ( lgtmSelfOwnMessage = `***lgtm*** can not be added in your self-own pull request. :astonished: ` - lgtmAddedMessage = `***lgtm*** is added in this pull request by: ***%s***. :wave: ` + lgtmAddedMessage = `***lgtm*** is added in this pull request by: ***%s***. :wave: +**NOTE:**: If you find this pull request unmerged while all conditions meets, you are encouraged use command: "/check-pr" to try it again. :smile: ` lgtmRemovedMessage = `***lgtm*** is removed in this pull request by: ***%s***. :flushed: ` lgtmAddNoPermissionMessage = `***%s*** has no permission to add ***lgtm*** in this pull request. :astonished: please contact to the collaborators in this repository.` -- Gitee