Maintainer guidelines for “Good first” and “Help wanted” issues¶
GitHub issues tagged “good first issue” and “help wanted” are often a contributors entry-point into a project. As such, it is important that these issues not only are true to their tag names, but that they are also giving new contributors an ideal first experience. Finally, providing this experience needs to be straightforward and repeatable for maintainers.
Here you will find guidelines, predefined responses, and tools for creating these issues and guiding the contributors who seek to resolve them.
Note: Looking for quick information to deal with an open issue? See:
What makes an issue a good first issue?¶
Generally speaking, a good first issue is one that provides a contributor an isolated, discrete task that teaches the contributor something new about Openverse. This learning enables the contributor to take on subsequent issues with increased confidence.
Here are some example signs that an issue is sufficiently isolated. These issues:
Do not require a holistic understanding of Openverse’s ingestion pipeline
Are limited to single programming language or programming paradigm (i.e, frontend JS, CSS, and markup)
Occupy a single slice of the Openverse stack
Touch a single file or as few files as necessary; ideally these files are colocated in the repository
Are based on the
mainbranch and not sub-features of a larger, multi-PR changeset
Other qualities of appropriate “good first” issues are that they:
Are not ‘high priority’, ‘critical priority’, or otherwise time sensitive
Are appropriate for those new to open source or Git workflows in-general
Can be, approximately, completed within two hours, one of which may be necessary for local development environment setup
Writing good first issue descriptions¶
Good first issue descriptions should provide as much context as possible. These issues should generally be self-contained; all the documentation necessary to complete the issue should be included with or linked to in the issue description. The aim is to make the issue as approachable as possible while setting clear expectations. This up-front effort is to the benefit of contributors and maintainers. Ideally, it decreases the amount of time maintainers spend reviewing PRs that have not met the minimum requirements (e.g., no unit tests, linting failures, and so on). For contributors, it helps prevent them from feeling discouraged after completing the “core functionality” of a PR to then have to revisit the PR and add significant changes.
Descriptions should:
Clearly articulate the expected outcome of resolving the issue. Include any of the following, when relevant:
Changes (modifications or additions) to tests
Link to instructions for updating Playwright snapshots if the change might require it
Changes (modifications or additions) to documentation
Link to the relevant files and/or lines of code which need changing
Reference any past PRs which will help the contributor, for example:
A PR with a similar change
A PR which originally implemented the feature being modified
Relevant Openverse domain knowledge, either links to succinct documentation or links and a summary of the important aspects when documentation is detailed
Ideally “good first issue”s require essentially no Openverse-specific domain knowledge, but if they at all do (for example, to explain why a non-obvious solution is requested) then it must be included
Additional boilerplate for good first issue templates¶
In addition to our standard issue template, good first issues should also contain the following block of requirements:
## Good first issue checks
- Have I filled out the PR template correctly?
- Did I include testing instructions?
- Does my PR pass linting? (Test either via precommit or by running
`ov just lint` manually)
- Do all the tests still pass?
- If JavaScript changes, run `pnpm -r run test`
- If API changes, run `ov just api/test`
- If catalog changes, run `ov just catalog/test`
On “help wanted” issues¶
All good first issues are naturally “help wanted” issues as well. “Help wanted” issues which do not also include the “good first issue” label are excellent candidates for second, third, fourth, and so on issues from repeat contributors. If a contributor is labeled as a “first time contributor” in the GitHub user interface, make sure the issue they are working on is indeed marked “good first issue”, or that it is otherwise clear that they have advanced knowledge of the issue’s problem space that makes them an appropriate candidate.
For example, the maintainer of a 3rd party library we use might see we are having an issue with their code and offer a PR with a fix. This would be appropriate given their expertise.
Timing and process¶
It can often be tricky to determine how and when to make requests of a community contributor. The following table provides guidelines for specific scenarios.
Response times may be from the contributor or from a maintainer depending on the situation.
Scenario |
Recommended Response Time (Days) |
|---|---|
New PR submitted |
Typically priority based, but for community PRs should be 3 days |
Maintainer has pinged PR author |
3-5 |
Maintainer follow-up on previous PR feedback |
1-2 |
PR is ready for merge |
1-2 |