设置 Github 提交 RSS 提要

我正在尝试让 github 提交 RSS feed,但是到目前为止我还没有找到答案。我知道私有提要可以使用以下语法:

https://github.com/username.atom?token=token

但这是用户的活动提要。我想要一个我的项目之一的提交提要。

Update: This was the final syntax:

https://github.com/username/repository_name/commits/branch_name.atom?login=login&token=token.

Still can't view commits on all branches though.

46727 次浏览

你想要 https://github.com/whatever/commits/master.atom就像 Cloudera 水槽仓库https://github.com/cloudera/flume/commits/master.atom

除了 官方原子(第一部分)之外,还有另一种 RssHub

GitHub 正式提供了一些官方 RSS 源:

回购协议发布日期: https://github.com/:owner/:repo/releases.atom

回购提交: https://github.com/:owner/:repo/commits.atom

用户活动: Https://github.com/:user.atom

私人信号: Https://github.com/:user.private.atom?token=:secret (你可在此找到 登录后在仪表板页面订阅新闻提要)


RssHub:

Github 知识库

例子: https://rsshub.app/github/repos/yanglr

路由: /github/repos/:user

参数:

  • 用户(必需) : 用户名

语言趋势

例子: https://rsshub.app/github/trending/daily/javascript

路由: /github/trending/:since/:language?

参数:

  • 从(需要) : 时间跨度,可在 热门页面网址,可选每日每月

  • 语言(可选)

    语言,可以在 热门页面 URL 中找到

Github 存储库问题

例子: https://rsshub.app/github/issue/DIYgod/RSSHub

路由: /github/issue/:user/:repo

参数:

  • 用户(必需) : 用户名

  • Repo (required ): repository name

Github Repository Pull Requests

例子: https://rsshub.app/github/pull/DIYgod/RSSHub

路由: /github/pull/:user/:repo

参数:

  • 用户(必需) : 用户名

  • 回购(必需) : 存储库名称

Github User

例子: https://rsshub.app/github/user/followers/yanglr

路由: /github/user/followers/:user

参数:

  • 用户(必需) : 用户名

Github 知识库之星

例子: https://rsshub.app/github/stars/yanglr/CaliburnMicro-Calculator

路由: /github/stars/:user/:repo

参数:

  • 用户(必需) : 用户名

  • Repo (required): repository name

Github 搜索结果

例子: https://rsshub.app/github/search/RSSHub/bestmatch/desc

路由: /github/search/:query/:sort?/:order?

参数:

  • Query (必需) : search 关键字

  • Sort (optional): Sorting options (default is bestmatch)

  • Order (可选) : 排序顺序,desc 和 asc (默认的 desc 降序)

enter image description here

此外,你可以使用 饲料43为任何网页创建提要,如果不必要的帐户登录。正式教程,单击 给你查看。