forked from intel/xml-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
31 lines (29 loc) · 958 Bytes
/
pull-request-analytics.yml
File metadata and controls
31 lines (29 loc) · 958 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
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
# Declare default permissions as read only.
permissions: read-all
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 }}