Sorry, we don't support your browser.  Install a modern browser

GIthub release milestones#319

Check the number of days before a github milestones date.
as shown on the attached micture, any milestone can have a dead-line date.

It would be very interesting to intégrate Momentum with this kind of counter !

The most accurate doc about Github milstione API is there:

Having a get on the dedicated repo

curl \
-H “Accept: application/vnd.github.v3+json” \
https://api.github.com/repos/[owner]/[repo]/milestones

with replacing the [owner] and [repo] by the targeted one,

It will retrieve all information for all milestones, and for each entry a very interesting one:

[

“due_on”: “2012-10-09T23:39:01Z”
}
]

That’s all folk ! ;)
Fred D.

4 years ago