forked from nicklegan/github-org-member-contribution-action
-
Notifications
You must be signed in to change notification settings - Fork 1
/
action.yml
42 lines (39 loc) · 1.38 KB
/
action.yml
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
32
33
34
35
36
37
38
39
40
41
42
name: GitHub Organization Member Contribution Report Generator
description: 'An Action to generate a report that contains member contribution data for a set interval belonging to a GitHub organization.'
inputs:
token:
description: 'A Personal Access token with repo, read:org and read:user scope'
required: true
org:
description: 'Custom GitHub organization to retrieve data for'
default: ''
required: false
days:
description: 'Amount of days in the past to collect data for'
default: '30'
required: true
sort:
description: 'Column used for sorting resport results'
# activeContrib, commitContrib, issueContrib, prContrib, prreviewContrib, repoIssueContrib, repoCommitContrib, repoPullRequestContrib, repoPullRequestReviewContrib
default: 'commitContrib'
required: false
committer-name:
description: 'The name of the committer that will appear in the Git history'
default: 'github-actions'
required: false
committer-email:
description: 'The committer email that will appear in the Git history'
default: '[email protected]'
required: false
fromdate:
description: 'The date from which to start collecting data'
required: false
todate:
description: 'The date to which to stop collecting data'
required: false
runs:
using: 'node16'
main: 'dist/index.js'
branding:
icon: 'list'
color: 'blue'