generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathaction.yml
26 lines (26 loc) · 770 Bytes
/
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
name: 'Get billing for Github Actions'
description: 'Get billing for Github Actions'
author: 'keita-hino'
branding:
icon: check
color: green
inputs:
account-type:
description: 'user or org'
required: false
default: 'user'
github-token:
description: "The GitHub token for your repo"
required: true
outputs:
included-minutes:
description: "The amount of free GitHub Actions minutes available"
total-minutes-used:
description: "The sum of the free and paid GitHub Actions minutes used"
usable-minutes:
description: "The value obtained by subtracting total-minutes-used from included-minutes"
days-left-in-billing-cycle:
description: "Numbers of days left in billing cycle"
runs:
using: 'node16'
main: 'dist/index.js'