* List the milestones for the repository * @see https://developer.github.com/v3/issues/milestones/#list-milestones-for-a-repository * @param {Object} options - filtering options * @param {Requestable.callback} [cb] - will receive the array of milestones * @return {Promise} - the prom
(options, cb)
| 143 | * @return {Promise} - the promise for the http request |
| 144 | */ |
| 145 | listMilestones(options, cb) { |
| 146 | return this._request('GET', `/repos/${this.__repository}/milestones`, options, cb); |
| 147 | } |
| 148 | |
| 149 | /** |
| 150 | * Get a milestone |