-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathaction.yml
37 lines (36 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
30
31
32
33
34
35
36
37
name: "action-doctum"
author: williamdes
description: "Use Doctum without having to install it"
inputs:
config-file:
description: "The configuration file"
required: true
method:
description: "parse, render or update"
required: true
cli-args:
description: "Command line arguments"
default: '--output-format=github --no-ansi --no-progress -v'
required: false
user-id:
description: "The user to execute the build, will be auto detected"
default: ''
required: false
group-id:
description: "The user to execute the build, will be auto detected"
default: ''
required: false
branding:
icon: "book"
color: blue
runs:
using: "docker"
image: "docker://botsudo/action-doctum:latest"
env:
USER_ID: "${{ inputs.user-id }}"
GROUP_ID: "${{ inputs.group-id }}"
args:
- latest
- "${{ inputs.config-file }}"
- "${{ inputs.method }}"
- "${{ inputs.cli-args }}"