-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
action.yml
29 lines (29 loc) · 966 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
27
28
29
# action.yml
name: 'Load runner information'
author: 'Rob Bos'
description: 'Load an overview of all available runners in a GitHub Organization'
branding:
icon : alert-circle
color: blue
inputs:
organization:
description: 'Slug of the organization to analyze.'
required: true
repo:
description: 'Slug of the repository to analyze.'
required: false
accessToken:
description: 'Access token to use for analysis with either admin:org or repo owner if you run it against a repo'
required: true
outputs:
runners:
description: 'JSON string with the runner information available in the organization or repo'
grouped:
description: 'JSON string with the labels and the number of runners with that label'
runners-file-location:
description: 'Path to the file that holds the JSON output'
grouped-file-location:
description: 'Path to the file that holds the JSON output'
runs:
using: 'node20'
main: 'dist/main.js'