Get all activity for an issue or pull request, in order
npm install gh-issue-updatesGet all activity for an issue or pull request, in order.
``js
var getUpdates = require('gh-issue-updates');
getUpdates({
repo: 'rvagg/through2',
issue: 33
}).on('data', console.log)
`
Output:
`bash`
$ node example.js
{ type: 'issue',
data: '...' }
{ type: 'commit comment',
data: '...' }
{ type: 'comment',
data: '...' }
...
`bash``
$ npm install gh-issue-updates
- issue
- comment
- commit comment
- event (assigned, merged, watched etc)
MIT