Auto-regenerate files

This commit is contained in:
github-actions[bot]
2021-03-21 14:00:58 +00:00
parent 6449c41ddd
commit 73602a5d33
4 changed files with 38 additions and 7 deletions

View File

@@ -31,7 +31,7 @@ And you can customize these heavily with plugins, templates and hundreds of opti
<table>
<tr>
<th colspan="2" align="center">
<a href="source/plugins/README.md">🧩 27 plugins</a>
<a href="source/plugins/README.md">🧩 28 plugins</a>
</th>
</tr>
<tr>
@@ -255,7 +255,7 @@ And you can customize these heavily with plugins, templates and hundreds of opti
</tr>
<tr>
<th><a href="source/plugins/posts/README.md">✒️ Recent posts</a></th>
<th><a href="source/plugins/wakatime/README.md">⏰ WakaTime plugin</a></th>
<th><a href="source/plugins/rss/README.md">🗼 Rss feed</a></th>
</tr>
<tr>
<td align="center">
@@ -266,20 +266,23 @@ And you can customize these heavily with plugins, templates and hundreds of opti
<img width="900" height="1" alt="">
</td>
<td align="center">
<img alt="" width="400" src="https://github.com/lowlighter/lowlighter/blob/master/metrics.plugin.wakatime.svg">
<img alt="" width="400" src="https://github.com/lowlighter/lowlighter/blob/master/metrics.plugin.rss.svg">
<img width="900" height="1" alt="">
</td>
</tr>
<tr>
<th><a href="source/plugins/wakatime/README.md">⏰ WakaTime plugin</a></th>
<th><a href="source/plugins/nightscout/README.md">💉 Nightscout</a></th>
<th><a href="source/plugins//README.md"></a></th>
</tr>
<tr>
<td align="center">
<img alt="" width="400" src="https://github.com/lowlighter/lowlighter/blob/master/metrics.plugin.wakatime.svg">
<img width="900" height="1" alt="">
</td>
<td align="center">
<img alt="" width="400" src="https://github.com/legoandmars/legoandmars/blob/master/metrics.plugin.nightscout.svg">
<img width="900" height="1" alt="">
</td>
<td align="center"><img width="900" height="1" alt=""></td>
</tr>
<tr>
<th colspan="2" align="center">
@@ -630,6 +633,7 @@ https://my-personal-domain.com/my-github-user?base=0&base.repositories=1
<th nowrap="nowrap" align="center" title="🌸 Anilist watch list and reading list">🌸</th>
<th nowrap="nowrap" align="center" title="🗨️ Stackoverflow plugin">🗨️</th>
<th nowrap="nowrap" align="center" title="✒️ Recent posts">✒️</th>
<th nowrap="nowrap" align="center" title="🗼 Rss feed">🗼</th>
<th nowrap="nowrap" align="center" title="⏰ WakaTime plugin">⏰</th>
<th nowrap="nowrap" align="center" title="💉 Nightscout">💉</th>
</tr>
@@ -661,6 +665,7 @@ https://my-personal-domain.com/my-github-user?base=0&base.repositories=1
<th nowrap="nowrap" align="center" data-plugin="anilist">✔️</th>
<th nowrap="nowrap" align="center" data-plugin="stackoverflow">✔️</th>
<th nowrap="nowrap" align="center" data-plugin="posts">✔️</th>
<th nowrap="nowrap" align="center" data-plugin="rss">✔️</th>
<th nowrap="nowrap" align="center" data-plugin="wakatime">✔️</th>
<th nowrap="nowrap" align="center" data-plugin="nightscout">✔️</th>
</tr>
@@ -692,6 +697,7 @@ https://my-personal-domain.com/my-github-user?base=0&base.repositories=1
<th nowrap="nowrap" align="center" data-plugin="anilist">❌</th>
<th nowrap="nowrap" align="center" data-plugin="stackoverflow">❌</th>
<th nowrap="nowrap" align="center" data-plugin="posts">❌</th>
<th nowrap="nowrap" align="center" data-plugin="rss">✔️</th>
<th nowrap="nowrap" align="center" data-plugin="wakatime">❌</th>
<th nowrap="nowrap" align="center" data-plugin="nightscout">❌</th>
</tr>
@@ -723,6 +729,7 @@ https://my-personal-domain.com/my-github-user?base=0&base.repositories=1
<th nowrap="nowrap" align="center" data-plugin="anilist">❌</th>
<th nowrap="nowrap" align="center" data-plugin="stackoverflow">❌</th>
<th nowrap="nowrap" align="center" data-plugin="posts">❌</th>
<th nowrap="nowrap" align="center" data-plugin="rss">❌</th>
<th nowrap="nowrap" align="center" data-plugin="wakatime">❌</th>
<th nowrap="nowrap" align="center" data-plugin="nightscout">❌</th>
</tr>
@@ -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

19
action.yml generated
View File

@@ -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

3
settings.example.json generated
View File

@@ -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"

View File

@@ -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)