-
-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathaction.yml
More file actions
30 lines (26 loc) · 650 Bytes
/
action.yml
File metadata and controls
30 lines (26 loc) · 650 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
30
# action.yml
name: "Generate & update markdown content"
description: "Automatically generate & update markdown content like a README.md"
author: "Christian Muehlhaeuser"
inputs:
template:
description: "Which template to use"
default: "README.md.tpl"
required: false
writeTo:
description: "Where to render the template to"
default: "README.md"
required: false
outputs:
modified:
description: "Which files were modified"
runs:
using: "docker"
image: "docker://fribbledom/markscribe"
args:
- "-write"
- ${{ inputs.writeTo }}
- ${{ inputs.template }}
branding:
icon: "file-text"
color: "green"