diff options
author | Aleksey Kladov <[email protected]> | 2020-10-14 14:20:31 +0100 |
---|---|---|
committer | Aleksey Kladov <[email protected]> | 2020-10-14 14:20:31 +0100 |
commit | 190011168dda6ce4836b105b892f0a26eaf07411 (patch) | |
tree | 64c0708666e1c92fb516f41e02f9b28c70c6d0fe /docs | |
parent | 3e450cf89f9fcb7356a12487ccac7f8e21811095 (diff) |
Introduce S-actionable and S-unactionable labels
I've noticed that a significant fraction of issues are inert.
They are valid, acknowledged and useful, but effectively can't be
fixed for variety of reasons (no reproduction, dependencies on some
other issues, no review capacity, etc).
Marking issues that can be fixed by just applying some elbow grease
seems useful!
Diffstat (limited to 'docs')
-rw-r--r-- | docs/dev/README.md | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/docs/dev/README.md b/docs/dev/README.md index 36edddc70..90e74f226 100644 --- a/docs/dev/README.md +++ b/docs/dev/README.md | |||
@@ -35,7 +35,12 @@ https://rust-lang.zulipchat.com/#narrow/stream/185405-t-compiler.2Fwg-rls-2.2E0 | |||
35 | * [E-easy](https://github.com/rust-analyzer/rust-analyzer/issues?q=is%3Aopen+is%3Aissue+label%3AE-easy), | 35 | * [E-easy](https://github.com/rust-analyzer/rust-analyzer/issues?q=is%3Aopen+is%3Aissue+label%3AE-easy), |
36 | [E-medium](https://github.com/rust-analyzer/rust-analyzer/issues?q=is%3Aopen+is%3Aissue+label%3AE-medium), | 36 | [E-medium](https://github.com/rust-analyzer/rust-analyzer/issues?q=is%3Aopen+is%3Aissue+label%3AE-medium), |
37 | [E-hard](https://github.com/rust-analyzer/rust-analyzer/issues?q=is%3Aopen+is%3Aissue+label%3AE-hard), | 37 | [E-hard](https://github.com/rust-analyzer/rust-analyzer/issues?q=is%3Aopen+is%3Aissue+label%3AE-hard), |
38 | labels are *estimates* for how hard would be to write a fix. | 38 | [E-unknown](https://github.com/rust-analyzer/rust-analyzer/issues?q=is%3Aopen+is%3Aissue+label%3AE-unknown), |
39 | labels are *estimates* for how hard would be to write a fix. Each triaged issue should have one of these labels. | ||
40 | * [S-actionable](https://github.com/rust-analyzer/rust-analyzer/issues?q=is%3Aopen+is%3Aissue+label%3AS-actionable) and | ||
41 | [S-unactionable](https://github.com/rust-analyzer/rust-analyzer/issues?q=is%3Aopen+is%3Aissue+label%3AS-unactionable) | ||
42 | specify if there are concrete steps to resolve or advance an issue. Roughly, actionable issues need only work to be fixed, | ||
43 | while unactionable ones are effectively wont-fix. Each triaged issue should have one of these labels. | ||
39 | * [fun](https://github.com/rust-analyzer/rust-analyzer/issues?q=is%3Aopen+is%3Aissue+label%3Afun) | 44 | * [fun](https://github.com/rust-analyzer/rust-analyzer/issues?q=is%3Aopen+is%3Aissue+label%3Afun) |
40 | is for cool, but probably hard stuff. | 45 | is for cool, but probably hard stuff. |
41 | 46 | ||