{"id":35729222,"url":"https://github.com/rogeryoungh/github-action-rss","last_synced_at":"2026-01-28T08:34:58.315Z","repository":{"id":138867197,"uuid":"578600191","full_name":"rogeryoungh/github-action-rss","owner":"rogeryoungh","description":"RSS email notifactions, based on GitHub Action. RSS 邮件订阅，基于 GitHub Action。","archived":false,"fork":false,"pushed_at":"2025-12-31T05:52:19.000Z","size":327,"stargazers_count":9,"open_issues_count":4,"forks_count":2,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-01-03T00:12:29.967Z","etag":null,"topics":["rss"],"latest_commit_sha":null,"homepage":"","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/rogeryoungh.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2022-12-15T12:46:44.000Z","updated_at":"2025-12-31T05:50:40.000Z","dependencies_parsed_at":"2024-03-26T08:31:58.661Z","dependency_job_id":"a6fb8562-e3ca-4a73-a8c2-9480d1667fe7","html_url":"https://github.com/rogeryoungh/github-action-rss","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/rogeryoungh/github-action-rss","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rogeryoungh%2Fgithub-action-rss","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rogeryoungh%2Fgithub-action-rss/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rogeryoungh%2Fgithub-action-rss/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rogeryoungh%2Fgithub-action-rss/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/rogeryoungh","download_url":"https://codeload.github.com/rogeryoungh/github-action-rss/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rogeryoungh%2Fgithub-action-rss/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28842865,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-28T07:39:25.367Z","status":"ssl_error","status_checked_at":"2026-01-28T07:39:24.487Z","response_time":57,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["rss"],"created_at":"2026-01-06T10:17:06.345Z","updated_at":"2026-01-28T08:34:58.309Z","avatar_url":"https://github.com/rogeryoungh.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# GitHub Action RSS\n\n\u003e 我对当前所有托管 RSS 服务的条数限制比较失望，且邮件通知都是付费功能，所以有了本项目。\n\n本项目能够读取 OPML 格式的 RSS 订阅列表，按时间和目录进行排序，并实现邮件通知。\n\nThis project is able to read a list of RSS feeds in OPML format, sort them by time and tag, and email notifications.\n\n## Usage | 用法\n\n您需要准备好您的 RSS 订阅文件 `feed.opml`，以及 Workflow 文件 [send.yml](https://github.com/rogeryoungh/github-action-rss/blob/main/.github/workflows/send.yml)，仓库如下图组织。\n\nPlease prepared your RSS subjects file `feed.opml` and [send.yml](https://github.com/rogeryoungh/github-action-rss/blob/main/.github/workflows/send.yml), organized as below:\n\n```text\n.\n├─ .github\n│  └─ workflows\n│     └─ send.yml\n└─ feed.opml\n```\n\n接下来您需要根据您的需求修改 `send.yml`：\n\n1. 首先请您更改 `send.yml` 中的地址 `https://rogeryoungh.github.io/github-action-rss/` 为您的 GitHub Pages 服务的地址。\n2. 若您不需要邮件服务，删掉 Send mail 块即可。\n3. 若您需要邮件服务，请备好支持 SMTP 发信的邮箱：\n   - 请在该仓库的 Setting \u003e Actions secrets and variables 中添加变量：`MAIL_HOST`、`MAIL_USER`、`MAIL_PASS`、`RECEIVERS`。\n   - 如您在填写 secrets 时遇到困难，也可以硬编码到 `send.yml`，注意隐私安全。\n\nNext, you need to modify `send.yml` to suit your needs:\n\n1. First, change the address `https://rogeryoungh.github.io/github-action-rss/` in `send.yml` to the address of your GitHub Pages.\n2. If you dont need email notifications, delete the \"send mail\" block.\n3. If you need email notifications, have a mailbox that support SMTP\n   - Add variables `MAIL_HOST`、`MAIL_USER`、`MAIL_PASS`、`RECEIVERS` in your repo setting `Setting \u003e Actions secrets and variables`.\n   - If you have trouble with filling, you can also hardcode your information in `send.yml`. Please take care of your privacy and security.\n\n四个变量的含义如下，以 `user@example.com` 发送到 `Q@Q.com` 为例\n\n- `MAIL_HOST`：邮件服务器 `example.com`\n- `MAIL_USER`：用户名 `user`\n- `MAIL_PASS`：密码 `******`\n- `RECEIVERS`：接收邮箱 `Q@Q.com`\n- 请参考 [dawidd6/action-send-mail](https://github.com/dawidd6/action-send-mail)\n\nThe meanings of the four variables are as follows, using `user@example.com` sent to `Q@Q.com` as an example\n\n- `MAIL_HOST`: the mail server `example.com`.\n- `MAIL_USER`: the user name `user`.\n- `MAIL_PASS`: password `******`\n- `RECEIVERS`: receiving mailbox `Q@Q.com`\n- refer to [dawidd6/action-send-mail](https://github.com/dawidd6/action-send-mail)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frogeryoungh%2Fgithub-action-rss","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frogeryoungh%2Fgithub-action-rss","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frogeryoungh%2Fgithub-action-rss/lists"}