forked from devops-actions/load-available-actions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaction.yml
29 lines (29 loc) · 1.01 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
# action.yml
name: 'Load available actions'
author: 'Rob Bos'
description: 'Load an overview of all available actions in a GitHub Organization by looking for the action.yml/yaml files.'
branding:
icon : alert-circle
color: blue
inputs:
organization:
description: 'Slug of the organization to analyze. Either this or the user slug needs to have a value'
required: false
user:
description: 'Slug of the user space to analyze. Either this or the organization slug needs to have a value'
required: false
PAT:
description: 'Personal access token to use for analysis. Leaving this empty will use the default GITHUB_TOKEN that could have limited access rights'
required: true
removeToken:
description: 'Remove hardcoded token before returning'
required: false
fetchReadmes:
description: 'Fetch readmes of actions'
required: false
outputs:
actions:
description: 'List of all actions available in the organization or user space'
runs:
using: 'node16'
main: 'dist/main.js'