generated from austenstone/action-typescript
-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
action.yml
40 lines (37 loc) · 1.02 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
name: Seat Count
author: Austen Stone
description: Count the remaining seats in your GitHub plan. License notifications.
branding:
icon: "percent"
color: "orange"
inputs:
github-token:
description: The GitHub token used to create an authenticated client
default: ${{ github.token }}
required: false
org:
description: The org to use for the action
default: ${{ github.event.organization.login }}
required: false
enterprise:
description: The enterprise to use for the action
default: ${{ github.event.organization.login }}
required: false
outputs:
filled_seats:
description: The number of filled seats
seats:
description: The total number of seats
percentage:
description: The percentage of total seats used
remaining:
description: The number of remaining seats
name:
description: The name of the plan
space:
description: The package space remaining
private_repos:
description: The number of private repos
runs:
using: "node16"
main: "dist/index.js"