Skip to content

Releases: vinitshahdeo/hacktoberfest-issue-hunt

Add labels, createdAt, state and comments to issue object

11 Oct 09:30
Compare
Choose a tag to compare
  • With this release, the response will also contain labels, createdAt, state and comments. 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 is true by default. Make it false in case you want to fetch closed issues as well.

[Hacktoberfest] Find all the open issues for Hacktoberfest on GitHub

07 Oct 00:17
Compare
Choose a tag to compare

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);

NPM