We need a way to get the title and label for issues on a given branch on GitHub that are newer than a provided timestamp and that have a certain label(different from the one being returned)
- Methods that integrate with the GitHub API and that will filter and extract titles and labels according to the provided
timestamp,branchandlabel
We need to build the following functionality:
- A method to get all merge commits since the given
timestamp(filter bybranch) - A method to extract issue meta data from commit issue ID reference (ex: #3351)
- A method to filter issues by
label - A method to return
titleandlabelthat the plugin can use to populate the notification list
- Research how to integrate with the GitHub API