Idea create a long list of "good first issues" for the web3 space:
Links to include (will be extended over time):
https://github.com/OpenQDev/goodfirstweb3issues/blob/main/github_links.txt
Layout:
https://goodfirstissue.dev/
Filters:
More stuff:
We used this query before to find issues with good first issue labels. Needs to be extended to go through all orgs and their repos, finding issues with that label.
query {
search (first: 100,
type: REPOSITORY,
query: "org:ipfs") {
nodes {
... on Repository {
name
issues(states: [OPEN], first: 1, filterBy: { labels: ["good first issue"] }) {
nodes {
title
number
url
author {
url
login
}
}
}
}
}
}
}
}
Idea create a long list of "good first issues" for the web3 space:
Links to include (will be extended over time):
https://github.com/OpenQDev/goodfirstweb3issues/blob/main/github_links.txt
Layout:
https://goodfirstissue.dev/
Filters:
More stuff:
We used this query before to find issues with good first issue labels. Needs to be extended to go through all orgs and their repos, finding issues with that label.