|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196 |
- ## MindSpore Community Command Help
-
- All of the projects in MindSpore Community are maintained by Bot.
- That means the developers can comment below every Pull Request or Issue to trigger Bot Commands.
- The Commands include the following:
-
- <table class="command">
- <thead>
- <tr>
- <th>Command</th>
- <th width="25%">Example</th>
- <th>Description</th>
- <th>Who Can Use</th>
- </tr>
- </thead>
- <tbody>
- <tr>
- <td>
- /check-cla
- </td>
- <td style="white-space:nowrap;">
- /check-cla
- </td>
- <td>
- Forces rechecking of the CLA status of a Pull Request.
- If the Pull Request author has already signed CLA,
- the label `mindspore-cla/yes` will be added in the Pull Request,
- If not, the label `mindspore-cla/no` will be added.
- </td>
- <td>
- Anyone
- </td>
- </tr>
- <tr>
- <td>
- /lgtm [cancel]
- </td>
- <td style="white-space:nowrap;">
- /lgtm
- <br/>
- /lgtm cancel
- </td>
- <td>
- Adds or removes the `lgtm` label which is typically used to gate merging.
- </td>
- <td>
- Collaborators on the repository. `/lgtm cancel` can be used additionally by the Pull Request author.
- </td>
- </tr>
- <tr>
- <td>
- /approve [cancel]
- </td>
- <td style="white-space:nowrap;">
- /approve
- <br/>
- /approve cancel
- </td>
- <td>
- Adds or removes the `approved` label which is typically used to gate merging.
- </td>
- <td>
- Collaborators on the repository.
- </td>
- </tr>
- <tr>
- <td>
- /[remove-]kind
- </td>
- <td style="white-space:nowrap;">
- /kind bug
- <br/>
- /remove-kind bug
- </td>
- <td>
- Applies or removes a kind label from one of the recognized types of labels.
- For example, the label is more like `kind/bug`.
- </td>
- <td>
- Anyone can trigger this command on a Pull Request or Issue.
- </td>
- </tr>
- <tr>
- <td>
- /[remove-]priority
- </td>
- <td style="white-space:nowrap;">
- /priority high
- <br/>
- /remove-priority high
- </td>
- <td>
- Applies or removes a priority label from one of the recognized types of labels.
- For example, the label is more like `priority/high`.
- </td>
- <td>
- Anyone can trigger this command on a Pull Request or Issue.
- </td>
- </tr>
- <tr>
- <td>
- /[remove-]sig
- </td>
- <td style="white-space:nowrap;">
- /sig kernel
- <br/>
- /remove-sig kernel
- </td>
- <td>
- Applies or removes a sig label from one of the recognized types of labels.
- For example, the label is more like `sig/kernel`.
- </td>
- <td>
- Anyone can trigger this command on a Pull Request or Issue.
- </td>
- </tr>
- <tr>
- <td>
- /close
- </td>
- <td style="white-space:nowrap;">
- /close
- </td>
- <td>
- Closes a Pull Request or an Issue.
- </td>
- <td>
- Authors and collaborators on the repository can trigger this command.
- </td>
- </tr>
- <tr>
- <td>
- /reopen
- </td>
- <td style="white-space:nowrap;">
- /reopen
- </td>
- <td>
- Reopens an Issue.
- </td>
- <td>
- Authors and collaborators on the repository can trigger this command.
- </td>
- </tr>
- <tr>
- <td>
- /retest
- </td>
- <td style="white-space:nowrap;">
- /retest
- </td>
- <td>
- Rerun test jobs that have failed.
- </td>
- <td>
- Anyone can trigger this command on a Pull Request.
- </td>
- </tr>
- <tr>
- <td>
- /assign [[@]...]
- </td>
- <td style="white-space:nowrap;">
- /assign
- <br/>
- /assign @mindspore-ci-bot
- </td>
- <td>
- Assigns an assignee to an Issue.
- </td>
- <td>
- 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.
- </td>
- </tr>
- <tr>
- <td>
- /unassign [[@]...]
- </td>
- <td style="white-space:nowrap;">
- /unassign
- <br/>
- /unassign @mindspore-ci-bot
- </td>
- <td>
- UnAssigns an assignee from an Issue.
- </td>
- <td>
- 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.
- </td>
- </tr>
- </tbody>
- </table>
|