A user should be able to ask the bot whether in a group or directly about whos working on what issue in the team.
Typical Syntax Would be
direct message to bot status team
in a group @gitassist: status team
Bot will reply
gitassist: m/n members are working on issues
member 1 : #123
member 2: #234
..
member m: #432
- Call
https://api.github.com/repos/harryi3t/slackassist/issues?state=open&per_page=100&page=1
if no. of issues < 100 then increment page
- the response is array of objects. We will use
html_url, title and assignee.
Depends on #34
A user should be able to ask the bot whether in a group or directly about whos working on what issue in the team.
Typical Syntax Would be
direct message to bot
status teamin a group
@gitassist: status teamBot will reply
gitassist: m/n members are working on issuesmember 1 : #123member 2: #234..member m: #432https://api.github.com/repos/harryi3t/slackassist/issues?state=open&per_page=100&page=1if no. of issues < 100 then increment
pagehtml_url,titleandassignee.Depends on #34