diff --git a/README.md b/README.md index 0d3b2b47..5b028604 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,7 @@ Generate your metrics that you can embed everywhere, including your GitHub profi
| - 🧩 21 plugins + 🧩 22 plugins | |||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 🏅 Contributors | 🎟️ Follow-up of issues and pull requests | -🎫 Gists | |||||||||||||||||||||||||||
|
+ |
|
+ ||||||||||||||||||||||||||||
| 🎫 Gists | +💡 Coding habits | +||||||||||||||||||||||||||||
|
|
- |||||||||||||||||||||||||||||
| 💡 Coding habits | -📅 Isometric commit calendar | -||||||||||||||||||||||||||||
Charts version@@ -73,6 +77,12 @@ Generate your metrics that you can embed everywhere, including your GitHub profi |
+ |||||||||||||||||||||||||||||
| 📅 Isometric commit calendar | +🈷️ Most used languages | +||||||||||||||||||||||||||||
Full year version@@ -80,12 +90,6 @@ Generate your metrics that you can embed everywhere, including your GitHub profi |
- |||||||||||||||||||||||||||||
| 🈷️ Most used languages | -📜 Licenses | -||||||||||||||||||||||||||||
With both total bytes size and percentage version@@ -93,6 +97,12 @@ Generate your metrics that you can embed everywhere, including your GitHub profi |
+ |||||||||||||||||||||||||||||
| 📜 Licenses | +👨💻 Lines of code changed | +||||||||||||||||||||||||||||
With licenses ratio@@ -100,16 +110,16 @@ Generate your metrics that you can embed everywhere, including your GitHub profi |
- |||||||||||||||||||||||||||||
| 👨💻 Lines of code changed | -🎼 Music plugin | -||||||||||||||||||||||||||||
|
|
+ |||||||||||||||||||||||||||||
| 🎼 Music plugin | +💉 Nightscout | +||||||||||||||||||||||||||||
🎼 Favorite tracks version |
- |||||||||||||||||||||||||||||
| 💉 Nightscout | -⏱️ Website performances | -||||||||||||||||||||||||||||
|
|
+ |||||||||||||||||||||||||||||
| ⏱️ Website performances | +🧑🤝🧑 People plugin | +||||||||||||||||||||||||||||
Detailed version@@ -139,12 +149,6 @@ Generate your metrics that you can embed everywhere, including your GitHub profi |
- |||||||||||||||||||||||||||||
| 🧑🤝🧑 People plugin | -✒️ Recent posts | -||||||||||||||||||||||||||||
Followed people version@@ -158,34 +162,40 @@ Generate your metrics that you can embed everywhere, including your GitHub profi |
+ |||||||||||||||||||||||||||||
| ✒️ Recent posts | +🗂️ Projects | +||||||||||||||||||||||||||||
|
|
- |||||||||||||||||||||||||||||
| 🗂️ Projects | -✨ Stargazers over last weeks | -||||||||||||||||||||||||||||
|
|
+ |||||||||||||||||||||||||||||
| ✨ Stargazers over last weeks | +🌟 Recently starred repositories | +||||||||||||||||||||||||||||
|
|
- |||||||||||||||||||||||||||||
| 🌟 Recently starred repositories | -📌 Starred topics | -||||||||||||||||||||||||||||
|
|
+ |||||||||||||||||||||||||||||
| 📌 Starred topics | +🧮 Repositories traffic | +||||||||||||||||||||||||||||
Mastered and known technologies version@@ -193,30 +203,23 @@ Generate your metrics that you can embed everywhere, including your GitHub profi |
- |||||||||||||||||||||||||||||
| 🧮 Repositories traffic | -🐤 Latest tweets | -||||||||||||||||||||||||||||
|
|
+ |||||||||||||||||||||||||||||
| 🐤 Latest tweets | +⏰ WakaTime plugin | +||||||||||||||||||||||||||||
|
|
- |||||||||||||||||||||||||||||
| ⏰ WakaTime plugin | -- | ||||||||||||||||||||||||||||
|
|
- |||||||||||||||||||||||||||||
| @@ -561,6 +564,7 @@ https://my-personal-domain.com/my-github-user?base=0&base.repositories=1 | 🗃️ | 📰 | 🌸 | +🏅 | 🎟️ | 🎫 | 💡 | @@ -586,6 +590,7 @@ https://my-personal-domain.com/my-github-user?base=0&base.repositories=1✔️ | ✔️ | ✔️ | +❌ | ✔️ | ✔️ | ✔️ | @@ -611,6 +616,7 @@ https://my-personal-domain.com/my-github-user?base=0&base.repositories=1✔️ | ✔️ | ❌ | +✔️ | ✔️ | ❌ | ❌ | @@ -636,6 +642,7 @@ https://my-personal-domain.com/my-github-user?base=0&base.repositories=1✔️ | ❌ | ❌ | +❌ | ❌ | ✔️ | ❌ | @@ -677,6 +684,7 @@ See their respective documentation for more informations about how to setup them * [🧱 Core](/source/plugins/core/README.md) * [📰 Recent activity](/source/plugins/activity/README.md) * [🌸 Anilist](/source/plugins/anilist/README.md) +* [🏅 Contributors](/source/plugins/contributors/README.md) * [🎟️ Follow-up of issues and pull requests](/source/plugins/followup/README.md) * [🎫 Gists](/source/plugins/gists/README.md) * [💡 Coding habits](/source/plugins/habits/README.md) diff --git a/action.yml b/action.yml index 615fa0f5..3ef0b551 100644 --- a/action.yml +++ b/action.yml @@ -233,6 +233,24 @@ inputs: description: AniList login default: .user.login + # ==================================================================================== + # 🏅 Contributors + + # Enable or disable plugin + plugin_contributors: + description: Display repository contributors + default: no + + # Base reference (commit, tag, branch, etc.) + plugin_contributors_base: + description: Base reference + default: "" + + # Head reference (commit, tag, branch, etc.) + plugin_contributors_head: + description: Head reference + default: master + # ==================================================================================== # 🎟️ Follow-up of issues and pull requests diff --git a/settings.example.json b/settings.example.json index 4bda85af..5a2fdee7 100644 --- a/settings.example.json +++ b/settings.example.json @@ -28,6 +28,9 @@ "anilist":{ "enabled": false, "//": "Display data from your AniList account" }, + "contributors":{ + "enabled": false, "//": "Display repository contributors" + }, "followup":{ "enabled": false, "//": "Display follow-up of repositories issues and pull requests" }, diff --git a/source/plugins/README.md b/source/plugins/README.md index 29af095d..6280170a 100644 --- a/source/plugins/README.md +++ b/source/plugins/README.md @@ -7,6 +7,7 @@ See their respective documentation for more informations about how to setup them * [🧱 Core](/source/plugins/core/README.md) * [📰 Recent activity](/source/plugins/activity/README.md) * [🌸 Anilist](/source/plugins/anilist/README.md) +* [🏅 Contributors](/source/plugins/contributors/README.md) * [🎟️ Follow-up of issues and pull requests](/source/plugins/followup/README.md) * [🎫 Gists](/source/plugins/gists/README.md) * [💡 Coding habits](/source/plugins/habits/README.md)|