forked from devops-actions/load-used-actions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaction.yml
25 lines (25 loc) · 832 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
# action.yml
name: 'Load used actions'
author: 'Rob Bos'
description: 'Load an overview of all used actions in a GitHub Organization (or user account)'
branding:
icon : download
color: orange
inputs:
organization:
description: 'Slug of the organization to analyze. Leave empty for current organization'
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
outputs:
actions:
description: 'List of all actions used in the organization'
actions-file:
description: 'Location of the file containing the list of all actions used in the organization'
runs:
using: 'docker'
image: 'Dockerfile'
args:
- '${{ inputs.organization }}'
- '${{ inputs.PAT }}'