generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
33 lines (28 loc) · 911 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
30
31
32
33
name: 'MFDLABS Component Finder'
description:
'Finds components within a project, with an optional folder filter. If not
specified it will search the entire project (excluding the .git folder).'
author: 'MFDLABS'
# Add your action's branding here. This will appear on the GitHub Marketplace.
branding:
icon: 'heart'
color: 'red'
# Define your inputs here.
inputs:
components:
description:
'Comma delimited list of components to search for. If not specified it
will search for all components.'
required: false
component-search-directories:
description:
'Comma delimited list of folders to search within. If not specified it
will search the entire project (excluding the .git folder).'
required: false
# Define your outputs here.
outputs:
components:
description: 'A map of components to their locations.'
runs:
using: node20
main: dist/index.js