### đŸŽŸī¸ Follow-up of issues and pull requests The *followup* plugin displays the ratio of open/closed issues and the ratio of open/merged pull requests across all your repositories, which shows if they're well-maintained or not.
Indepth analysis
Created on an user's repositories
Created by an user
#### âžĄī¸ Available options | Option | Type *(format)* **[default]** *{allowed values}* | Description | | ------ | -------------------------------- | ----------- | | `plugin_followup` | `boolean` **[no]** | Display follow-up of repositories issues and pull requests | | `plugin_followup_sections` | `array` *(comma-separated)* **[repositories]** *{"repositories", "user"}* | Sections to display | | `plugin_followup_indepth` | `boolean` **[no]** | Indepth follow-up processing | Legend for option icons: * 🔐 Value should be stored in repository secrets * ✨ New feature currently in testing on `master`/`main` *[→ Full specification](metadata.yml)* #### â„šī¸ Examples workflows ```yaml name: Opened on user's repositories uses: lowlighter/metrics@latest with: filename: metrics.plugin.followup.svg token: ${{ secrets.METRICS_TOKEN }} base: '' plugin_followup: 'yes' ``` ```yaml 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 ``` ```yaml 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' ```