From 79b80b1900ef8f2b3abbaad91151276327d9278a Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Fri, 24 Jun 2022 18:11:01 +0000
Subject: [PATCH] ci: auto-regenerate files
---
README.md | 5 +++--
action.yml | 12 ++++++++++++
source/plugins/followup/README.md | 22 +++++++++++++++++++++
source/plugins/pagespeed/README.md | 24 +++++++++++++++++++++++
source/plugins/repositories/README.md | 28 ++++++++++++++++++++++++++-
5 files changed, 88 insertions(+), 3 deletions(-)
diff --git a/README.md b/README.md
index fca49d65..fc1d95f6 100644
--- a/README.md
+++ b/README.md
@@ -19,7 +19,7 @@ Generate metrics that can be embedded everywhere, including your GitHub profile
|
-
+
|
@@ -182,7 +182,8 @@ Generate metrics that can be embedded everywhere, including your GitHub profile
-
+ Featured
+ Pinned
|
diff --git a/action.yml b/action.yml
index a8847d1e..e5bf3d52 100644
--- a/action.yml
+++ b/action.yml
@@ -449,6 +449,10 @@ inputs:
description: Indepth analysis
default:
+ plugin_followup_archived:
+ description: Include Issues and Pull requests on the archived repositories.
+ default:
+
# ====================================================================================
# 🎭 Comment reactions
@@ -744,6 +748,10 @@ inputs:
description: List of featured repositories
default:
+ plugin_repositories_pinned:
+ description: Display pinned repositories
+ default:
+
# ====================================================================================
# 🎫 Gists
@@ -873,6 +881,10 @@ inputs:
description: PageSpeed token
default:
+ plugin_pagespeed_pwa:
+ description: Display PWA Status
+ default:
+
# ====================================================================================
# 🗨️ StackOverflow plugin
diff --git a/source/plugins/followup/README.md b/source/plugins/followup/README.md
index 47d1fa7e..9d1b2a94 100644
--- a/source/plugins/followup/README.md
+++ b/source/plugins/followup/README.md
@@ -69,6 +69,17 @@
default: no
|
+
+ plugin_followup_archived
|
+ Include Issues and Pull requests on the archived repositories.
+![]() |
+
+
+ ✨ On master/main
+type: boolean
+
+default: yes
|
+
@@ -114,5 +125,16 @@ with:
plugin_followup: yes
plugin_followup_indepth: yes
+```
+```yaml
+name: Exclude Archived
+uses: lowlighter/metrics@latest
+with:
+ filename: metrics.plugin.followup.archived.svg
+ token: ${{ secrets.METRICS_TOKEN }}
+ base: ""
+ plugin_followup: yes
+ plugin_followup_archived: no
+
```
diff --git a/source/plugins/pagespeed/README.md b/source/plugins/pagespeed/README.md
index e12398fe..4a027c37 100644
--- a/source/plugins/pagespeed/README.md
+++ b/source/plugins/pagespeed/README.md
@@ -95,6 +95,17 @@ It uses plugin_pagespeed_pwa
+ Display PWA Status
+![]() |
+
+
+ ✨ On master/main
+type: boolean
+
+default: no
|
+
@@ -138,5 +149,18 @@ with:
plugin_pagespeed_token: ${{ secrets.PAGESPEED_TOKEN }}
plugin_pagespeed_url: https://lecoq.io
+```
+```yaml
+name: Succint report with PWA
+uses: lowlighter/metrics@latest
+with:
+ filename: metrics.plugin.pagespeed.svg
+ token: NOT_NEEDED
+ base: ""
+ plugin_pagespeed: yes
+ plugin_pagespeed_token: ${{ secrets.PAGESPEED_TOKEN }}
+ plugin_pagespeed_url: https://lecoq.io
+ plugin_pagespeed_pwa: yes
+
```
diff --git a/source/plugins/repositories/README.md b/source/plugins/repositories/README.md
index c0ea0719..b9378b7c 100644
--- a/source/plugins/repositories/README.md
+++ b/source/plugins/repositories/README.md
@@ -20,7 +20,8 @@
-
+ Featured
+ Pinned
|
@@ -56,6 +57,20 @@
(comma-separated)
+
+ plugin_repositories_pinned
|
+ Display pinned repositories
+![]() |
+
+
+ ✨ On master/main
+type: number
+(0 ≤
+𝑥
+≤ 6)
+
+default: 0
|
+
@@ -72,5 +87,16 @@ with:
plugin_repositories: yes
plugin_repositories_featured: lowlighter/metrics
+```
+```yaml
+name: Pinned repositories
+uses: lowlighter/metrics@latest
+with:
+ filename: metrics.plugin.repositories.pinned.svg
+ token: ${{ secrets.METRICS_TOKEN }}
+ base: ""
+ plugin_repositories: yes
+ plugin_repositories_pinned: 2
+
```