ci: auto-regenerate files
This commit is contained in:
@@ -19,7 +19,7 @@ Generate metrics that can be embedded everywhere, including your GitHub profile
|
|||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<th colspan="2" align="center">
|
<th colspan="2" align="center">
|
||||||
<h3><a href="/README.md#-plugins">🧩 Customizable with 40 plugins and 280 options!</a></h3>
|
<h3><a href="/README.md#-plugins">🧩 Customizable with 40 plugins and 282 options!</a></h3>
|
||||||
</th>
|
</th>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
@@ -454,6 +454,7 @@ Plugins provide additional content and lets you customize rendered metrics.
|
|||||||
* [📸 Website screenshot <sub>`screenshot`</sub>](/source/plugins/community/screenshot/README.md) by [@lowlighter](https://github.com/lowlighter)
|
* [📸 Website screenshot <sub>`screenshot`</sub>](/source/plugins/community/screenshot/README.md) by [@lowlighter](https://github.com/lowlighter)
|
||||||
* [💹 Stock prices <sub>`stock`</sub>](/source/plugins/community/stock/README.md) by [@lowlighter](https://github.com/lowlighter)
|
* [💹 Stock prices <sub>`stock`</sub>](/source/plugins/community/stock/README.md) by [@lowlighter](https://github.com/lowlighter)
|
||||||
|
|
||||||
|
|
||||||
## 💪 Contributing
|
## 💪 Contributing
|
||||||
|
|
||||||
If you are interested in contributing, the following resources may interest you:
|
If you are interested in contributing, the following resources may interest you:
|
||||||
|
|||||||
8
action.yml
generated
8
action.yml
generated
@@ -121,6 +121,14 @@ inputs:
|
|||||||
description: Extra JavaScript
|
description: Extra JavaScript
|
||||||
default: <default-value>
|
default: <default-value>
|
||||||
|
|
||||||
|
github_api_rest:
|
||||||
|
description: GitHub REST API endpoint
|
||||||
|
default: <default-value>
|
||||||
|
|
||||||
|
github_api_graphql:
|
||||||
|
description: GitHub GraphQL API endpoint
|
||||||
|
default: <default-value>
|
||||||
|
|
||||||
config_timezone:
|
config_timezone:
|
||||||
description: Timezone for dates
|
description: Timezone for dates
|
||||||
default: ""
|
default: ""
|
||||||
|
|||||||
4
settings.example.json
generated
4
settings.example.json
generated
@@ -25,6 +25,10 @@
|
|||||||
"secret": null, "//": "GitHub OAUTH client secret",
|
"secret": null, "//": "GitHub OAUTH client secret",
|
||||||
"url":"https://example.com", "//": "GitHub OAUTH callback url (must be the same as the web instance host)"
|
"url":"https://example.com", "//": "GitHub OAUTH callback url (must be the same as the web instance host)"
|
||||||
},
|
},
|
||||||
|
"api":{
|
||||||
|
"rest": null, "//": "GitHub REST API custom endpoint",
|
||||||
|
"graphql": null, "//": "GitHub GraphQL API custom endpoint"
|
||||||
|
},
|
||||||
"control":{
|
"control":{
|
||||||
"token": null, "//": "Control token (can be used by external services to perform actions on instance, such as stopping it for redeploys)"
|
"token": null, "//": "Control token (can be used by external services to perform actions on instance, such as stopping it for redeploys)"
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -52,3 +52,4 @@ Plugins provide additional content and lets you customize rendered metrics.
|
|||||||
* [💩 PoopMap plugin <sub>`poopmap`</sub>](/source/plugins/community/poopmap/README.md) by [@matievisthekat](https://github.com/matievisthekat)
|
* [💩 PoopMap plugin <sub>`poopmap`</sub>](/source/plugins/community/poopmap/README.md) by [@matievisthekat](https://github.com/matievisthekat)
|
||||||
* [📸 Website screenshot <sub>`screenshot`</sub>](/source/plugins/community/screenshot/README.md) by [@lowlighter](https://github.com/lowlighter)
|
* [📸 Website screenshot <sub>`screenshot`</sub>](/source/plugins/community/screenshot/README.md) by [@lowlighter](https://github.com/lowlighter)
|
||||||
* [💹 Stock prices <sub>`stock`</sub>](/source/plugins/community/stock/README.md) by [@lowlighter](https://github.com/lowlighter)
|
* [💹 Stock prices <sub>`stock`</sub>](/source/plugins/community/stock/README.md) by [@lowlighter](https://github.com/lowlighter)
|
||||||
|
|
||||||
|
|||||||
@@ -646,6 +646,32 @@ It is run after transformations and optimizations, but just before resizing.</p>
|
|||||||
<li><i>metrics.run.puppeteer.user.js</i></li>
|
<li><i>metrics.run.puppeteer.user.js</i></li>
|
||||||
</ul>
|
</ul>
|
||||||
<b>type:</b> <code>string</code>
|
<b>type:</b> <code>string</code>
|
||||||
|
<br></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td nowrap="nowrap"><h4><code>github_api_rest</code></h4></td>
|
||||||
|
<td rowspan="2"><p>GitHub REST API endpoint</p>
|
||||||
|
<p>Can be used to support <a href="https://github.com/enterprise">GitHub enterprises server</a>.
|
||||||
|
Leave empty to use default endpoint.</p>
|
||||||
|
<img width="900" height="1" alt=""></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td nowrap="nowrap">⏭️ Global option<br>
|
||||||
|
✨ On <code>master</code>/<code>main</code><br>
|
||||||
|
<b>type:</b> <code>string</code>
|
||||||
|
<br></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td nowrap="nowrap"><h4><code>github_api_graphql</code></h4></td>
|
||||||
|
<td rowspan="2"><p>GitHub GraphQL API endpoint</p>
|
||||||
|
<p>Can be used to support <a href="https://github.com/enterprise">GitHub enterprises server</a>.
|
||||||
|
Leave empty to use default endpoint.</p>
|
||||||
|
<img width="900" height="1" alt=""></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td nowrap="nowrap">⏭️ Global option<br>
|
||||||
|
✨ On <code>master</code>/<code>main</code><br>
|
||||||
|
<b>type:</b> <code>string</code>
|
||||||
<br></td>
|
<br></td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
|
|||||||
Reference in New Issue
Block a user