Releases: vinitshahdeo/hacktoberfest-issue-hunt
Releases · vinitshahdeo/hacktoberfest-issue-hunt
Add labels, createdAt, state and comments to issue object
- With this release, the response will also contain
labels
,createdAt
,state
andcomments
. Below is the new response structure:
[
{
title: "Add More Inspirational Quotes",
link: "https://github.com/vinitshahdeo/inspirational-quotes/issues/4",
labels: ['good first issue', 'help wanted', 'hacktoberfest'],
state: 'open',
comments: 2,
createdAt: 'Monday, October 11th 2021'
},
{
title: "Create a React App to filter Hacktoberfest issues on the basis of languages and labels",
link: "https://github.com/vinitshahdeo/hacktoberfest-issue-hunt/issues/1",
labels: ['good first issue', 'help wanted', 'hacktoberfest'],
state: 'open',
comments: 5,
createdAt: 'Sunday, October 10th 2021'
}
]
- Introduced a new option
ignoreClosed
. This istrue
by default. Make itfalse
in case you want to fetchclosed
issues as well.
[Hacktoberfest] Find all the open issues for Hacktoberfest on GitHub
This is a npm module that can be used to list all the open issues for Hacktoberfest. Additionally, you can filter issues based on:
- languages like
js
,python
, etc. - labels like
first timers only
,good first issues
, etc.
const hacktoberfestIssueHunt = require('hacktoberfest-issue-hunt');
hacktoberfestIssueHunt({ token: 'XXXXXX' })
.then((issues) => console.log(issues))
.catch(console.log);