-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathaction.yml
More file actions
54 lines (51 loc) · 1.48 KB
/
action.yml
File metadata and controls
54 lines (51 loc) · 1.48 KB
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
43
44
45
46
47
48
49
50
51
52
53
54
name: GitHub Organization Code Frequency Report Action
description: 'An Action to generate a report with frequency metrics and programming languages used per repository for a GitHub organization'
inputs:
token:
description: 'A Personal Access token with repo and read:org scope'
required: true
org:
description: 'Custom GitHub organization to retrieve data for'
default: ''
required: false
weeks:
description: 'Amount of weeks in the past to collect data for'
default: '4'
required: false
sort:
description: 'Column used for sorting report results'
default: 'additions'
required: false
sort-order:
description: 'Selected column sorting direction'
default: 'desc'
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: 'github-actions@github.com'
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
json:
description: 'Optional report export in JSON format'
required: false
appid:
required: false
privatekey:
required: false
installationid:
required: false
runs:
using: 'node16'
main: 'dist/index.js'
branding:
icon: 'list'
color: 'blue'