-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathaction.yml
33 lines (33 loc) · 953 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: 'Minimum Dependency Generator'
description: 'Generate minimum dependencies with given X requirement text files.'
inputs:
paths:
description: 'path to requirements text files or setup.cfg'
required: true
options:
description: 'section of setup.cfg (in [options])'
required: false
extras_require:
description: 'section of setup.cfg (in [options.extras_require])'
required: false
output_filepath:
description: 'filepath to output minimum requirements as text file'
required: false
outputs:
min_reqs: # id of output
description: 'String that contains the minimized requirements (separated by \n)'
runs:
using: 'docker'
image: 'Dockerfile'
args:
- --paths
- ${{ inputs.paths }}
- --options
- ${{ inputs.options }}
- --extras_require
- ${{ inputs.extras_require }}
- --output_filepath
- ${{ inputs.output_filepath }}
branding:
icon: 'align-center'
color: 'green'