Should the Go project continue to import GitHub PRs?
The article discusses the possibility of no longer accepting GitHub PRs for the Go repositories and reducing the use of GerritBot. The author highlights the issues with the current GitHub workflow, including its lack of effectiveness and the buggy nature of the import workflow. They also mention the difficulty in addressing data model mismatches and the unlikelihood of significant development work on GerritBot in the near future.
The author suggests reversing the decision made in #18517 and instead closing GitHub PRs with a message directing contributors to the Gerrit workflow in the Contribution Guide.
While some contributors share their positive experiences with the Gerrit workflow, others argue that the GitHub import feature lowers the barrier for simple drive-by contributions.
Overall, the article raises the question of whether the Go project should continue importing GitHub PRs or shift to a more streamlined workflow. Developers interested in the Go language and its development process will find this discussion relevant to their work.
package main
import "fmt"
func main() {
fmt.Println("Hello, Go developers!")
}