diff options
| author | Jakub Beránek <berykubik@gmail.com> | 2025-09-15 20:22:46 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-09-15 20:22:46 +0200 |
| commit | 3a14fb7c7b514e2facd97975c5a1d380becaea3a (patch) | |
| tree | 183eb0453ea5e52dbefd8f8fd215a7dc362384c3 | |
| parent | ee63b075395b40cd19b9ef00580f5297fb8222cc (diff) | |
| parent | 001f8e3e1ad9b5739c6ec2f63c7b52ebd5d68006 (diff) | |
| download | rust-3a14fb7c7b514e2facd97975c5a1d380becaea3a.tar.gz rust-3a14fb7c7b514e2facd97975c5a1d380becaea3a.zip | |
Merge pull request #2589 from Kobzol/ci-bors-backticks
Clarify that backtick escaping doesn't work for `@bors try jobs`
| -rw-r--r-- | src/doc/rustc-dev-guide/src/tests/ci.md | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/doc/rustc-dev-guide/src/tests/ci.md b/src/doc/rustc-dev-guide/src/tests/ci.md index a8cc959124f..d9fc2324d8b 100644 --- a/src/doc/rustc-dev-guide/src/tests/ci.md +++ b/src/doc/rustc-dev-guide/src/tests/ci.md @@ -151,8 +151,9 @@ which can be used in one of two ways: Each job pattern can either be an exact name of a job or a glob pattern that matches multiple jobs, for example `*msvc*` or `*-alt`. You can start at most 20 jobs in a single try build. When using -glob patterns, you might want to wrap them in backticks (`` ` ``) to avoid GitHub rendering -the pattern as Markdown. +glob patterns in the PR description, you can (but do not have to) wrap them in backticks (`` ` ``) to avoid GitHub rendering +the pattern as Markdown if it contains e.g. an asterisk. Note that this escaping will not work when using +the `@bors jobs=` parameter. The job pattern needs to match one or more jobs defined in the `auto` or `optional` sections of [`jobs.yml`]: |
