Skip to content

Commit

Permalink
Auto merge of #7627 - xFrednet:0000-updating-issue-templates-again, r…
Browse files Browse the repository at this point in the history
…=llogiq

Updating issue templates again for rustbot

It turns out that our current issue template can sometimes trigger a rustbot error message, as can be seen in [#7626](#7626). I originally tested this in #7599, but it's apparently a bit inconsistent. This PR adds backticks to the commands, as correctly suggested by `@mikerite` in the comments. (Thank you!)

``@rustbot` label +S-blocked`

---

Now I also pushed a tiny link fix as well. 🙃

---

changelog: none
  • Loading branch information
bors committed Sep 5, 2021
2 parents e5ae3f5 + 169aea6 commit df7e63b
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 7 deletions.
5 changes: 3 additions & 2 deletions .github/ISSUE_TEMPLATE/blank_issue.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,10 @@ about: Create a blank issue.


<!--
Additional labels can be added to this issue by including the following command:
Additional labels can be added to this issue by including the following command
(without the space after the @ symbol):
@rustbot label +<label>
`@rustbot label +<label>`
Common labels for this issue type are:
* C-an-interesting-project
Expand Down
5 changes: 3 additions & 2 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,10 @@ LLVM version: 10.0
```

<!--
Additional labels can be added to this issue by including the following command:
Additional labels can be added to this issue by including the following command
(without the space after the @ symbol):
@rustbot label +<label>
`@rustbot label +<label>`
Common labels for this issue type are:
* `I-suggestion-causes-error`
Expand Down
5 changes: 3 additions & 2 deletions .github/ISSUE_TEMPLATE/false_positive.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,10 @@ LLVM version: 10.0
```

<!--
Additional labels can be added to this issue by including the following command:
Additional labels can be added to this issue by including the following command
(without the space after the @ symbol):
@rustbot label +<label>
`@rustbot label +<label>`
Common labels for this issue type are:
* I-suggestion-causes-error
Expand Down
2 changes: 1 addition & 1 deletion doc/adding_lints.md
Original file line number Diff line number Diff line change
Expand Up @@ -556,7 +556,7 @@ directory. Adding a configuration to a lint can be useful for thresholds or to c
behavior that can be seen as a false positive for some users. Adding a configuration is done
in the following steps:

1. Adding a new configuration entry to [clippy_utils::conf](/clippy_utils/src/conf.rs)
1. Adding a new configuration entry to [clippy_lints::utils::conf](/clippy_lints/src/utils/conf.rs)
like this:
```rust
/// Lint: LINT_NAME.
Expand Down

0 comments on commit df7e63b

Please sign in to comment.