You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
doc/contribute: add examples for finding issues on the issue tracker
For contributors looking for new issues to contribute to it can be
difficult to find issues that need a fix and don't already have a fix
being considered. There are several labels that help guide the way
already, like `NeedsFix`, `HelpWanted`. But many issues with this label
will already have a CL. For new contributors this can be especially
difficult.
Fixes#26494
Change-Id: Ifd38ea65e362b4c580207a06f959646e49ac594f
GitHub-Last-Rev: 6d2b544
GitHub-Pull-Request: #26516
Reviewed-on: https://go-review.googlesource.com/125355
Reviewed-by: Andrew Bonventre <[email protected]>
Run-TryBot: Andrew Bonventre <[email protected]>
TryBot-Result: Gobot Gobot <[email protected]>
Copy file name to clipboardExpand all lines: doc/contribute.html
+19
Original file line number
Diff line number
Diff line change
@@ -292,6 +292,25 @@ <h3>Check the issue tracker</h3>
292
292
</li>
293
293
</ul>
294
294
295
+
<p>
296
+
You can use GitHub's search functionality to find issues to help out with. Examples:
297
+
</p>
298
+
299
+
<ul>
300
+
<li>
301
+
Issues that need investigation: <ahref="https://github.com/golang/go/issues?q=is%3Aissue+is%3Aopen+label%3ANeedsInvestigation"><code>is:issue is:open label:NeedsInvestigation</code></a>
302
+
</li>
303
+
<li>
304
+
Issues that need a fix: <ahref="https://github.com/golang/go/issues?q=is%3Aissue+is%3Aopen+label%3ANeedsFix"><code>is:issue is:open label:NeedsFix</code></a>
305
+
</li>
306
+
<li>
307
+
Issues that need a fix and have a CL: <ahref="https://github.com/golang/go/issues?q=is%3Aissue+is%3Aopen+label%3ANeedsFix+%22golang.org%2Fcl%22"><code>is:issue is:open label:NeedsFix "golang.org/cl"</code></a>
308
+
</li>
309
+
<li>
310
+
Issues that need a fix and do not have a CL: <ahref="https://github.com/golang/go/issues?q=is%3Aissue+is%3Aopen+label%3ANeedsFix+NOT+%22golang.org%2Fcl%22"><code>is:issue is:open label:NeedsFix NOT "golang.org/cl"</code></a>
311
+
</li>
312
+
</ul>
313
+
295
314
<h3id="design">Open an issue for any new problem</h3>
0 commit comments