惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Google DeepMind News
Google DeepMind News
F
Fortinet All Blogs
阮一峰的网络日志
阮一峰的网络日志
Apple Machine Learning Research
Apple Machine Learning Research
爱范儿
爱范儿
WordPress大学
WordPress大学
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
J
Java Code Geeks
罗磊的独立博客
S
SegmentFault 最新的问题
V
V2EX
V
Visual Studio Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
美团技术团队
博客园 - 三生石上(FineUI控件)
Stack Overflow Blog
Stack Overflow Blog
Y
Y Combinator Blog
MyScale Blog
MyScale Blog
D
Docker
Google DeepMind News
Google DeepMind News
Blog — PlanetScale
Blog — PlanetScale
M
Microsoft Research Blog - Microsoft Research
Martin Fowler
Martin Fowler
S
Secure Thoughts
B
Blog
cs.CL updates on arXiv.org
cs.CL updates on arXiv.org
www.infosecurity-magazine.com
www.infosecurity-magazine.com
Recent Announcements
Recent Announcements
MongoDB | Blog
MongoDB | Blog
C
Cisco Blogs
C
CERT Recently Published Vulnerability Notes
T
True Tiger Recordings
GbyAI
GbyAI
P
Proofpoint News Feed
P
Privacy International News Feed
Jina AI
Jina AI
The Cloudflare Blog
I
Intezer
AWS News Blog
AWS News Blog
Hacker News - Newest:
Hacker News - Newest: "LLM"
S
Security Archives - TechRepublic
NISL@THU
NISL@THU
The Register - Security
The Register - Security
Recent Commits to openclaw:main
Recent Commits to openclaw:main
P
Palo Alto Networks Blog
S
Schneier on Security
L
LINUX DO - 热门话题
C
CXSECURITY Database RSS Feed - CXSecurity.com
Security Latest
Security Latest
C
Cybersecurity and Infrastructure Security Agency CISA

少数派

暂无文章

自动化信息工作流·RSS➡Telegram - 少数派
2023-01-31 · via 少数派

RSS传输的工具及平台非常多,之前也收录汇总过,RSS指南:https://efficiencyfollow.notion.site/RSS-01f580f05df2412993c5ad0f68f0a95d该篇介绍的是使用Github Action自动化监测发送RSS到Telegram

Github:https://github.com/TerraceCN/TGRSS

一、Fork 或下载仓库代码到自己的仓库

二、将 Telegram token 添加到 secrets

TELEGRAM_TOKEN值为从 @BotFather 获取到的您bot的 API Token。

由于我改了rss.yml中的secrets,填写时要填写自己更改的名称,如图

个人的token在开发者设置中设置

GitHub Token为自己创建的有 repo 权限的 GitHub Token

编辑config.yml

rss_groups 包含了可以让您将多个RSS源归为一个“类别”的订阅组。如果多个用户同时订阅了相同的源,您就可以将这些源放进一个订阅组中,并且使用 锚点& 和 应用* 来将他们添加给订阅的用户。

rss_groups:
  组_1: &anchor_1
    订阅_1: 订阅_1_地址
    订阅_2: 订阅_2_地址
  组_2: &anchor_2
    订阅_3: 订阅_3_地址

chat_ids 包含了每个用户的 chat_id。 您可以将订阅组添加给用户,或者直接添加单独的订阅。

chat_ids:
  您的chat_id:
    <<: *anchor_1
    订阅_4: 订阅_4_地址

四、 启用 Github Action

点击 Actions后运行TGRSS_Action并查看是否正常发送