Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion src/bors/handlers/help.rs
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,9 @@ mod tests {
- `try [parent=<parent>] [job|jobs=<jobs>]`: Start a try build.
- Optionally, you can specify a `<parent>` SHA with which will the PR be merged. You can specify `parent=last` to use the same parent SHA as the previous try build.
- Optionally, you can select a comma-separated list of CI `<jobs>` to run in the try build.
For example, `@bors try jobs=foobar,foobaz`.
Examples:
- `@bors try jobs=x86_64-gnu-nopt`
- `@bors try jobs=x86_64-gnu-nopt,x86_64-mingw-*` (matches `x86_64-gnu-nopt` and jobs starting with `x86_64-mingw-`)
- `try cancel`: Cancel a running try build on the current PR.
- `retry`: Clear a failed auto build status from an approved PR. This will cause the merge queue to eventually attempt to merge the PR again.
- `cancel` | `yield`: Cancel a running auto build on the current PR.
Expand Down
4 changes: 3 additions & 1 deletion src/bors/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,9 @@ You can use the following commands:
- `try [parent=<parent>] [job|jobs=<jobs>]`: Start a try build.
- Optionally, you can specify a `<parent>` SHA with which will the PR be merged. You can specify `parent=last` to use the same parent SHA as the previous try build.
- Optionally, you can select a comma-separated list of CI `<jobs>` to run in the try build.
For example, `@bors try jobs=foobar,foobaz`.
Examples:
- `@bors try jobs=x86_64-gnu-nopt`
- `@bors try jobs=x86_64-gnu-nopt,x86_64-mingw-*` (matches `x86_64-gnu-nopt` and jobs starting with `x86_64-mingw-`)
- `try cancel`: Cancel a running try build on the current PR.
- `retry`: Clear a failed auto build status from an approved PR. This will cause the merge queue to eventually attempt to merge the PR again.
- `cancel` | `yield`: Cancel a running auto build on the current PR.
Expand Down