ci: auto-regenerate files

This commit is contained in:
github-actions[bot]
2022-08-14 17:12:08 +00:00
parent 541400e350
commit c2805d8271
5 changed files with 41 additions and 1 deletions

View File

@@ -19,7 +19,7 @@ Generate metrics that can be embedded everywhere, including your GitHub profile
</tr>
<tr>
<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>
</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)
* [💹 Stock prices <sub>`stock`</sub>](/source/plugins/community/stock/README.md) by [@lowlighter](https://github.com/lowlighter)
## 💪 Contributing
If you are interested in contributing, the following resources may interest you:

8
action.yml generated
View File

@@ -121,6 +121,14 @@ inputs:
description: Extra JavaScript
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:
description: Timezone for dates
default: ""

4
settings.example.json generated
View File

@@ -25,6 +25,10 @@
"secret": null, "//": "GitHub OAUTH client secret",
"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":{
"token": null, "//": "Control token (can be used by external services to perform actions on instance, such as stopping it for redeploys)"
},

View File

@@ -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)
* [📸 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)

View File

@@ -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>
</ul>
<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>
</tr>
<tr>