Created
March 25, 2019 14:49
-
-
Save prashanth-sams/50a6c3fe51a1d4d181a5f315f69ac3d4 to your computer and use it in GitHub Desktop.
GitHub open issues 1 - Chatbot
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Description: | |
# Show open issues from a Github repository | |
# Commands: | |
# hubot label <label> -- Lists all the closed issues with specific label. | |
_ = require("underscore") | |
module.exports = (robot) -> | |
github = require("githubot")(robot) | |
robot.respond /label (.*)$/i, (msg) -> | |
query_params = state: "open", sort: "created" | |
query_params.per_page=100 | |
query_params.labels = msg.match[1] | |
console.log "============" | |
console.log query_params | |
console.log "============" | |
base_url = process.env.HUBOT_GITHUB_API || 'https://api.github.com' | |
github.get "#{base_url}/repos/#{process.env.HUBOT_GITHUB_USER}/#{process.env.HUBOT_GITHUB_REPO}/issues", query_params, (issues) -> | |
if !_.isEmpty issues | |
for issue in issues | |
labels = ("`##{label.name}`" for label in issue.labels).join(" ") | |
msg.send "> [`#{issue.number}`] *#{issue.title} #{labels}* #{issue.html_url}" | |
else | |
msg.send "No open issues with this filter!" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment