diff --git a/README.md b/README.md index f50dd2c9..105893cb 100644 --- a/README.md +++ b/README.md @@ -31,7 +31,7 @@ And you can customize these heavily with plugins, templates and hundreds of opti
| - 🧩 27 plugins + 🧩 28 plugins | |||||||
|---|---|---|---|---|---|---|---|
| ✒️ Recent posts | -⏰ WakaTime plugin | +🗼 Rss feed | |||||
|
@@ -266,20 +266,23 @@ And you can customize these heavily with plugins, templates and hundreds of opti
|
- |
||||||
| ⏰ WakaTime plugin | 💉 Nightscout | -||||||
|
+ |
|
- ||||||
| @@ -630,6 +633,7 @@ https://my-personal-domain.com/my-github-user?base=0&base.repositories=1 | 🌸 | 🗨️ | ✒️ | +🗼 | ⏰ | 💉 | ✔️ | ✔️ | ✔️ | +✔️ | ✔️ | ✔️ | @@ -692,6 +697,7 @@ https://my-personal-domain.com/my-github-user?base=0&base.repositories=1❌ | ❌ | ❌ | +✔️ | ❌ | ❌ | @@ -723,6 +729,7 @@ https://my-personal-domain.com/my-github-user?base=0&base.repositories=1❌ | ❌ | ❌ | +❌ | ❌ | ❌ | @@ -773,8 +780,9 @@ See their respective documentation for more informations about how to setup them * [🌸 Anilist watch list and reading list](/source/plugins/anilist/README.md) * [🗨️ Stackoverflow plugin](/source/plugins/stackoverflow/README.md) * [✒️ Recent posts](/source/plugins/posts/README.md) + * [🗼 Rss feed](/source/plugins/rss/README.md) * [⏰ WakaTime plugin](/source/plugins/wakatime/README.md) -* **Health** +* **Other** * [💉 Nightscout](/source/plugins/nightscout/README.md) ### 🏦 Organizations metrics diff --git a/action.yml b/action.yml index 3aae5bd7..b0ea8a6b 100644 --- a/action.yml +++ b/action.yml @@ -844,6 +844,25 @@ inputs: description: Posts external source username default: .user.login + # ==================================================================================== + # 🗼 Rss feed + + # Enable or disable plugin + plugin_rss: + description: Display RSS feed + default: no + + # RSS feed source + plugin_rss_source: + description: RSS feed source + default: "" + + # Number of items to display + # Set to 0 to disable limitations + plugin_rss_limit: + description: Maximum number of items to display + default: 4 + # ==================================================================================== # ⏰ WakaTime plugin diff --git a/settings.example.json b/settings.example.json index e69afbc9..501e7775 100644 --- a/settings.example.json +++ b/settings.example.json @@ -104,6 +104,9 @@ "posts":{ "enabled": false, "//": "Display recent posts" }, + "rss":{ + "enabled": false, "//": "Display RSS feed" + }, "wakatime":{ "token": null, "//":"WakaTime API token", "enabled": false, "//": "Display WakaTime stats" diff --git a/source/plugins/README.md b/source/plugins/README.md index b942b25d..dbdde792 100644 --- a/source/plugins/README.md +++ b/source/plugins/README.md @@ -33,6 +33,7 @@ See their respective documentation for more informations about how to setup them * [🌸 Anilist watch list and reading list](/source/plugins/anilist/README.md) * [🗨️ Stackoverflow plugin](/source/plugins/stackoverflow/README.md) * [✒️ Recent posts](/source/plugins/posts/README.md) + * [🗼 Rss feed](/source/plugins/rss/README.md) * [⏰ WakaTime plugin](/source/plugins/wakatime/README.md) -* **Health** +* **Other** * [💉 Nightscout](/source/plugins/nightscout/README.md)