-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathaction.yml
More file actions
29 lines (23 loc) · 892 Bytes
/
action.yml
File metadata and controls
29 lines (23 loc) · 892 Bytes
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
name: Find Python Projects
description: Discover Python projects in a repository and expose helpful things from pyproject.toml to other steps
author: brandonlwhite@gmail.com
branding:
icon: search
color: blue
inputs:
root-dir:
description: Directory root for where to begin recursively searching for projects. Python projects contained in this directory or lower will be discovered.
required: false
default: '.'
outputs:
paths:
description: JSON array of found project path strings
projects:
description: JSON array of all found projects (`project` object)
testable-projects:
description: JSON array of all found projects (`project` object) that implement a `test` command
packageable-projects:
description: JSON array of all found projects (`project` object) that implement a `package` command
runs:
using: 'node20'
main: 'dist/index.js'