generated from austenstone/action-typescript
-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
action.yml
46 lines (43 loc) · 1.17 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
name: Copilot License Cleanup
author: Austen Stone
description: Get a report of inactive Copilot users and optionally remove them
branding:
icon: "clock"
color: "blue"
inputs:
organization:
description: The organization to use for the action
default: ${{ github.repository_owner }}
required: true
github-token:
description: The GitHub token used to create an authenticated client
default: ${{ github.token }}
required: false
remove:
description: Whether to remove inactive users
default: false
required: false
inactive-days:
description: The number of days to consider a user inactive
default: 90
required: false
job-summary:
description: Whether to output a summary of the job
default: true
required: false
csv:
description: Whether to output a CSV of the inactive users
default: false
required: false
outputs:
inactive-seats:
description: JSON array of inactive seats
inactive-seat-count:
description: The number of inactive seats
removed-seats:
description: The number of seats removed
seat-count:
description: The total number of seats
runs:
using: "node16"
main: "dist/index.js"