-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathaction.yml
More file actions
56 lines (53 loc) · 1.81 KB
/
action.yml
File metadata and controls
56 lines (53 loc) · 1.81 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
55
56
name: 'GitHub Organization Authorization Report Action'
description: 'A GitHub Action to generate reports that contain the SSH keys, PATs, GitHub App installations and deploy keys of an org.'
inputs:
token:
description: 'A Personal Access token with repo and read:org scope'
required: true
org:
description: 'GitHub organization to retrieve data for'
required: false
app-sort:
description: 'Sort GitHub Apps by selected column'
required: false
app-sort-order:
description: 'Sort GitHub App CSV column in ascending or descending order'
required: false
ssh-sort:
description: 'Sort SSH keys by selected column'
required: false
ssh-sort-order:
description: 'Sort SSH key CSV column in ascending or descending order'
required: false
pat-sort:
description: 'Sort Personal Access Tokens by selected column'
required: false
pat-sort-order:
description: 'Sort Personal Access Token CSV column in ascending or descending order'
required: false
deploy-keys-sort:
description: 'Sort Deploy Keys by selected column'
required: false
deploy-keys-sort-order:
description: 'Sort Deploy Key CSV column in ascending or descending order'
required: false
json:
description: 'Generate optional report in JSON format'
required: false
actor:
description: 'Retrieve organization members installing and adding repos to the GitHub App installation'
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
runs:
using: 'node16'
main: 'dist/index.js'
branding:
icon: 'list'
color: 'blue'