🌀 Z Activity #783
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --- | |
| name: "🌀 Z Activity" | |
| on: | |
| schedule: | |
| - cron: "0 1 * * 0/4" | |
| workflow_dispatch: | |
| push: | |
| branches: [main] | |
| paths: [.github/workflows/activity_metrics.yml] | |
| jobs: | |
| metrics-activity: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 30 | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| env: | |
| projects_svg: metrics/plugin/projects/projects.svg | |
| org-people_svg: metrics/plugin/people/org-people.svg | |
| zi-repository-people_svg: metrics/plugin/people/zi-repository.svg | |
| wiki-repository-people_svg: metrics/plugin/people/wiki-repository.svg | |
| f-sy-h-repository-people_svg: metrics/plugin/people/f-sy-h-repository.svg | |
| steps: | |
| - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 | |
| - uses: lowlighter/metrics@65836723097537a54cd8eb90f61839426b4266b6 | |
| with: | |
| filename: ${{ env.projects_svg }} | |
| token: ${{ secrets.ORG_TOKEN }} | |
| base: "" | |
| user: ${{ github.repository_owner }} | |
| plugin_projects: yes | |
| plugin_projects_descriptions: yes | |
| plugin_projects_limit: 10 | |
| - uses: lowlighter/metrics@65836723097537a54cd8eb90f61839426b4266b6 | |
| with: | |
| filename: ${{ env.zi-repository-people_svg }} | |
| token: ${{ secrets.ORG_TOKEN }} | |
| user: ${{ github.repository_owner }} | |
| base: "" | |
| template: repository | |
| repo: zi | |
| plugin_people: yes | |
| plugin_people_types: contributors, stargazers | |
| - uses: lowlighter/metrics@65836723097537a54cd8eb90f61839426b4266b6 | |
| with: | |
| filename: ${{ env.wiki-repository-people_svg }} | |
| token: ${{ secrets.ORG_TOKEN }} | |
| user: ${{ github.repository_owner }} | |
| base: "" | |
| template: repository | |
| repo: wiki | |
| plugin_people: yes | |
| plugin_people_types: contributors, stargazers | |
| - uses: lowlighter/metrics@65836723097537a54cd8eb90f61839426b4266b6 | |
| with: | |
| filename: ${{ env.f-sy-h-repository-people_svg }} | |
| token: ${{ secrets.ORG_TOKEN }} | |
| user: ${{ github.repository_owner }} | |
| base: "" | |
| template: repository | |
| repo: F-Sy-H | |
| plugin_people: yes | |
| plugin_people_types: contributors, stargazers |