|
| 1 | +# Visit https://github.com/lowlighter/metrics#-documentation for full reference |
| 2 | +name: Followup |
| 3 | +on: |
| 4 | + # Schedule updates (daily) |
| 5 | + schedule: [{ cron: "0 0 * * *" }] |
| 6 | + # Lines below let you run workflow manually and on each commit |
| 7 | + workflow_dispatch: |
| 8 | + push: { branches: ["master", "main"] } |
| 9 | +jobs: |
| 10 | + github-metrics: |
| 11 | + runs-on: ubuntu-latest |
| 12 | + permissions: |
| 13 | + contents: write |
| 14 | + steps: |
| 15 | + - uses: lowlighter/metrics@latest |
| 16 | + with: |
| 17 | + # Your GitHub token |
| 18 | + # The following scopes are required: |
| 19 | + # - public_access (default scope) |
| 20 | + # The following additional scopes may be required: |
| 21 | + # - read:org (for organization related metrics) |
| 22 | + # - read:user (for user related data) |
| 23 | + # - read:packages (for some packages related data) |
| 24 | + # - repo (optional, if you want to include private repositories) |
| 25 | + token: ${{ secrets.METRICS_TOKEN }} |
| 26 | + |
| 27 | + # Options |
| 28 | + user: iamAntimPal |
| 29 | + template: classic |
| 30 | + base: header, activity, community, repositories, metadata |
| 31 | + config_timezone: Germany/Berlin |
| 32 | + plugin_followup: yes |
| 33 | + plugin_followup_sections: repositories, user |
| 34 | + plugin_followup_indepth: yes |
| 35 | + plugin_followup_archived: no |
0 commit comments