Skip to content

Commit

Permalink
Create pull-request-analytics.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
gahan9 authored Jan 25, 2024
1 parent 830d66f commit 4f97a41
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/pull-request-analytics.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: "PR Analytics"
on:
workflow_dispatch:
inputs:
report_date_start:
description: "Report date start(d/MM/yyyy)"
required: false
report_date_end:
description: "Report date end(d/MM/yyyy)"
required: false
jobs:
create-report:
name: "Create report"
runs-on: ubuntu-latest
steps:
- name: "Run script for analytics"
uses: AlexSim93/pull-request-analytics-action@master
with:
GITHUB_TOKEN: ${{ secrets.TOKEN }}
GITHUB_REPO_FOR_ISSUE: "intel/xml-cli"
GITHUB_OWNER_FOR_ISSUE: "intel/xml-cli-maintain"
GITHUB_OWNERS_REPOS: "intel/xml-cli-maintain"
CORE_HOURS_START: "9:00"
CORE_HOURS_END: "19:00"
TIMEZONE: "Asia/Kolkata"
REPORT_DATE_START: ${{ inputs.report_date_start }}
REPORT_DATE_END: ${{ inputs.report_date_end }}

0 comments on commit 4f97a41

Please sign in to comment.