From 87543f6117de53814890fdb8854457cb5006b02d Mon Sep 17 00:00:00 2001 From: xiangxinyong Date: Fri, 10 Jan 2020 10:50:45 +0800 Subject: [PATCH] add bot command help --- en/command.md | 149 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 149 insertions(+) create mode 100644 en/command.md diff --git a/en/command.md b/en/command.md new file mode 100644 index 0000000..cdca7b7 --- /dev/null +++ b/en/command.md @@ -0,0 +1,149 @@ +## openGauss Community Command Help + +All of the projects in openGauss Community are maintained by Bot. +That means the developpers can comment below every Pull Request or Issue to trigger Bot Commands. +The Commands incluing as follows: + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
CommandExampleDescriptionWho Can Use
+ /lgtm [cancel] + + /lgtm +
+ /lgtm cancel +
+ Adds or removes the `lgtm` label which is typically used to gate merging. + + Collaborators on the repository. `/lgtm cancel` can be used additionally by the Pull Request author. +
+ /approve [cancel] + + /approve +
+ /approve cancel +
+ Adds or removes the `approved` label which is typically used to gate merging. + + Collaborators on the repository. +
+ /[remove-]kind + + /kind bug +
+ /remove-kind bug +
+ Applies or removes a kind label from one of the recognized types of labels. + For example, the label is more like `kind/bug`. + + Anyone can trigger this command on a Pull Request or Issue. +
+ /[remove-]priority + + /priority high +
+ /remove-priority high +
+ Applies or removes a priority label from one of the recognized types of labels. + For example, the label is more like `priority/high`. + + Anyone can trigger this command on a Pull Request or Issue. +
+ /close + + /close + + Closes a Pull Request or an Issue. + + Authors and collaborators on the repository can trigger this command. +
+ /reopen + + /reopen + + Reopens an Issue. + + Authors and collaborators on the repository can trigger this command. +
+ /assign [[@]...] + + /assign +
+ /assign @opengauss-bot +
+ Assigns an assignee to an Issue. + + Anyone can use this command on an Issue, + but the target user must be a member of the org that owns the repository. + If no target user is specified, that means this Issue will be assigned to yourself. +
+ /unassign [[@]...] + + /unassign +
+ /unassign @opengauss-bot +
+ UnAssigns an assignee from an Issue. + + Anyone can use this command on an Issue, + but the target user must be a member of the org that owns the repository. + If no target user is specified, that means this Issue will be unassigned from yourself. +
+ -- Gitee