Skip to content

Latest commit

 

History

History
69 lines (56 loc) · 2.01 KB

README.md

File metadata and controls

69 lines (56 loc) · 2.01 KB

Repository Monitor Action

This Github action generates custom metrics reports including the last releases using GitHub Pages.

Please note, this action will commit changes to the gh-pages branch and use subfolders to save the metrics.

Usage

The following steps generate some data and push them through the action to Pages:

steps:
    - uses: actions/checkout@v2.3.1
    - name: Calculate project metrics
      id: projectmetrics
      run: |
        yarn
        yarn build
        SIZE=($(du -s dist/))
        echo "::set-output name=code_size::$SIZE"
    - uses: cymetrics/monitor-action@master
      name: Update Report
      with:
        key: code-size
        value: ${{ steps.projectmetrics.outputs.code_size }}
        token: ${{ secrets.GITHUB_TOKEN }}

The metrics need to be configured with a custom config:

https://github.com/cymetrics/monitor-action/blob/master/.github/monitor-action/config.yml

The following config whould show the codesize as described in the action above:

metrics:
  code-size:
    description: Size of all source files in KB
groups:
  general:
    name: General
    description: This section shows code complexity metrics
    metrics:
      - code-size

Collect Job Metrics

The following step will collect job time of GitHub actions:

Set type attributes to job and value attributes to {GITHUB_RUN_ID}-{JOB_NAME}

  • GITHUB_RUN_ID: the runner ID, eg: 1173219317
  • JOB_NAME: the job name of workflow, eg: UpdateMonitor

See example from this file:

UpdateCITime:
    runs-on: ubuntu-latest
    needs: UpdateMonitor
    steps:
      - uses: actions/checkout@v2.3.4
      - uses: ./
        name: Update Report for ci time
        with:
          key: ci-time
          type: job
          value: ${{github.run_id}}-JOB_NAME
          token: ${{ secrets.GITHUB_TOKEN }}