Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

RSS to a github file?

Tags:

github

rss

Is there a way to get changes feed to this file:

https://github.com/angular/angular.js/commits/master/CHANGELOG.md

My goal is to simply know when angularjs, or any other repo I consume, has come up with a release.

Is this the way? Is there a better way?

like image 295
Daniel Birowsky Popeski Avatar asked Feb 24 '14 11:02

Daniel Birowsky Popeski


1 Answers

Yes, there is a better way wich works for any repo: use the releases atom feed. The general form is https://github.com/<owner>/<repo>/releases.atom

And the one you're looking for is available at https://github.com/angular/angular.js/releases.atom

like image 82
Julien Genestoux Avatar answered Oct 14 '22 02:10

Julien Genestoux