RSS 到自述文件操作
name: Update this repo's README
on:
schedule:
# Once a day at 8 AM
- cron: 0 8 * * *
jobs:
update:
runs-on: ubuntu-latest
steps:
- uses: JasonEtco/rss-to-readme@v1
with:
feed-url: https://jasonet.co/rss.xml
readme-section: feed
feed-url:
指向 RSS 源的 URL。假设 RSS 源遵循标准格式!
readme-section:
要更新的自述文件部分的名称。这将使用 JasonEtco/readme-box 替换 README 的一部分并更新文件。您的自述文件应包含如下 HTML 注释,其中 的值为 :feedreadme-section
### Example RSS feed:
<!--START_SECTION:feed-->
...
<!--END_SECTION:feed-->
可以检查此存储库的自述文件以查看其使用情况!
max(默认值:5)
RSS 源中要显示的最大项目数。默认为 !5
template(默认值:"* [{{ title }}]({{ link }}))")
您可以提供一个 Mustache 模板,以便在渲染 Feed 中的每个项目时使用。这些将以换行符 () 连接。例如:\n
- uses: JasonEtco/rss-to-readme@v1
with:
feed-url: https://jasonet.co/rss.xml
template: "> {{ excerpt }}\n\n[Read more!]({{ url }})"
branch(默认值:github.repository.default_branch)
您可以提供要更新的目标分支,而不是默认分支。
path(默认值:"README.md")
要更新的自述文件的路径。
github:https://github.com/JasonEtco/rss-to-readme#/