-
Notifications
You must be signed in to change notification settings - Fork 21
/
action.yml
30 lines (30 loc) · 1.22 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
name: 'Membership Audit Action for Enterprises and Organizations'
description: 'Outputs the membership access details of enterprise account or organization'
inputs:
organization:
description: 'Specify an organization if you want to audit a single org. Only specify either an organization or an enterprise account.'
required: false
enterprise:
description: 'Specify an Enterprise Account. Only specify either an organization or an enterprise account.'
required: false
token:
description: 'Scopes required: repo, read:org, read:enterprise (if using enterprise mode)'
required: true
issue:
description: 'If you want the output posted on an issue in the repo running the action'
required: false
default: false
samlIdentities:
description: 'If your organization is using SAML SSO and you want to retrieve the SAML nameId field for members'
required: false
default: false
affiliation:
description: 'Type of people you want to retrieve. `DIRECT` for organization members, `OUTSIDE` for outside collaboratores, and `ALL` (default) for everyone'
required: false
default: 'ALL'
outputs:
csv:
description: 'A CSV string with the output'
runs:
using: 'node12'
main: 'dist/index.js'