-
Notifications
You must be signed in to change notification settings - Fork 2
/
action.yml
47 lines (44 loc) · 1.43 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
43
44
45
46
47
name: 'GitHub Organization Member Email Report Action'
description: 'A GitHub Action to generate a report retrieving member email addresses from a GitHub cloud organization where possible.'
inputs:
token:
description: 'A Personal Access token with admin:org, read:user, repo, user:email scopes'
required: false
org:
description: 'GitHub organization to retrieve data from'
required: false
single-report:
description: 'Set default to value true to generate an additional report per workflow run'
required: false
sort:
description: 'CSV column used to sort generated report'
required: false
sort-order:
description: 'CSV sort order by key column for generated report'
required: false
json:
description: 'Generate optional report in JSON format'
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
appid:
description: 'Optional GitHub App ID'
required: false
privatekey:
description: 'Optional GitHub App private key'
required: false
installationid:
description: 'Optional GitHub App installation ID'
required: false
runs:
using: 'node16'
main: 'dist/index.js'
branding:
icon: 'list'
color: 'blue'