Skip to content

Statistics of most contributing author #113

Statistics of most contributing author

Statistics of most contributing author #113

Workflow file for this run

name: CI
run-name: ${{ inputs.workflow_description }}
on:
workflow_dispatch:
inputs:
authorship_analysis:
description: "Enable authorship analysis?"
type: boolean
required: true
default: true
workflow_description:
description: "Workflow's Description"
type: string
required: true
originality_threshold:
description: "Originality Threshold"
type: number
required: true
default: '-1'
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Dump debug_mode
run: echo "Is authorship analysis enabled? ${{ inputs.authorship_analysis }}"
shell: bash
- uses: actions/checkout@v2
- name: Install dependencies
run: pip install requests
- name: Collect Workflow Telemetry
uses: runforesight/workflow-telemetry-action@v1
with:
theme: "dark"
- name: Generate report (Statistics)
run: bash ./run.sh ${{ inputs.authorship_analysis }} ${{ inputs.originality_threshold }}