about summary refs log tree commit diff
path: root/src/doc/rustc-dev-guide
diff options
context:
space:
mode:
authorJakub Beránek <jakub.beranek@vsb.cz>2024-05-14 15:43:18 +0200
committerJakub Beránek <berykubik@gmail.com>2024-05-15 19:59:36 +0200
commitfb40adf9253a0895ca3be5e69cc67e63f7f8fd2a (patch)
treeaa10126f36eeb6515cc7386bbe4eb75870217035 /src/doc/rustc-dev-guide
parent904caf29f2dd2b6a02d8da6eaeb82f688eca0e94 (diff)
downloadrust-fb40adf9253a0895ca3be5e69cc67e63f7f8fd2a.tar.gz
rust-fb40adf9253a0895ca3be5e69cc67e63f7f8fd2a.zip
Add note about how to pick up abandoned PRs
Diffstat (limited to 'src/doc/rustc-dev-guide')
-rw-r--r--src/doc/rustc-dev-guide/src/getting-started.md14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/doc/rustc-dev-guide/src/getting-started.md b/src/doc/rustc-dev-guide/src/getting-started.md
index 7c08f00a11f..4424403bac3 100644
--- a/src/doc/rustc-dev-guide/src/getting-started.md
+++ b/src/doc/rustc-dev-guide/src/getting-started.md
@@ -122,6 +122,20 @@ compiler. You can see a list of diagnostic issues [here][diagnostic-issues].
 
 [diagnostic-issues]: https://github.com/rust-lang/rust/issues?q=is%3Aissue+is%3Aopen+label%3AA-diagnostics+no%3Aassignee
 
+### Picking up abandoned pull requests
+
+Sometimes, contributors send a pull request, but later find out that they don't have enough
+time to work on it, or they simply are not interested in it anymore. Such PRs are often
+eventually closed and they receive the `S-inactive` label. You could try to examine some of
+these PRs and pick up the work. You can find the list of such PRs [here][abandoned-prs].
+
+If the PR has been implemented in some other way in the meantime, the `S-inactive` label
+should be removed from it. If not, and it seems that there is still interest in the change,
+you can try to rebase the pull request on top of the latest `master` branch and send a new
+pull request, continuing the work on the feature.
+
+[abandoned-prs]: https://github.com/rust-lang/rust/pulls?q=is%3Apr+label%3AS-inactive+is%3Aclosed
+
 ### Contributing to std (standard library)
 
 See [std-dev-guide](https://std-dev-guide.rust-lang.org/).