source/plugins/followup/README.md
</td>
<b>default:</b> no
</td> </tr> <tr> <td nowrap="nowrap"><h4><code>plugin_followup_sections</code></h4></td> <td rowspan="2"><p>Displayed sections</p> <ul> <li><code>repositories</code>: overall status of issues and pull requests on your repositories</li> <li><code>user</code>: overall status of issues and pull requests you have created on GitHub</li> </ul> </td> </tr> <tr> <td nowrap="nowrap"><b>type:</b> <code>array</code> <i>(comma-separated)</i><b>default:</b> repositories
<b>allowed values:</b><ul><li>repositories</li><li>user</li></ul></td>
</tr> <tr> <td nowrap="nowrap"><h4><code>plugin_followup_indepth</code></h4></td> <td rowspan="2"><p>Indepth analysis</p> </td> </tr> <tr> <td nowrap="nowrap">๐ Web instances must configure <code>settings.json</code>: <ul> <li><i>metrics.api.github.overuse</i></li> </ul> <b>type:</b> <code>boolean</code><b>default:</b> no
</td> </tr> <tr> <td nowrap="nowrap"><h4><code>plugin_followup_archived</code></h4></td> <td rowspan="2"><p>Include archived repositories</p> </td> </tr> <tr> <td nowrap="nowrap"><b>type:</b> <code>boolean</code><b>default:</b> yes
</td> </tr> </table> <!--/options-->indepth modeThe plugin_followup_indepth option collects additional stats to differentiate issues and pull requests opened by maintainers and users.
It helps knowing whether repositories are also maintained by other users and give an overall health status of repositories.
โ ๏ธ This mode will try to list users with push access to know who are the maintainers in order to place issues in the correct category, which requires a
reposcope. If not available, it will consider that only the owner is a maintainer.
name: Opened on user's repositories
uses: lowlighter/metrics@latest
with:
filename: metrics.plugin.followup.svg
token: ${{ secrets.METRICS_TOKEN }}
base: ""
plugin_followup: yes
name: Opened by user
uses: lowlighter/metrics@latest
with:
filename: metrics.plugin.followup.user.svg
token: ${{ secrets.METRICS_TOKEN }}
base: ""
plugin_followup: yes
plugin_followup_sections: user
name: Indepth analysis
uses: lowlighter/metrics@latest
with:
filename: metrics.plugin.followup.indepth.svg
token: ${{ secrets.METRICS_TOKEN }}
base: ""
plugin_followup: yes
plugin_followup_indepth: yes
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