generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
39 lines (35 loc) · 940 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
34
35
36
37
38
39
name: Render Nunjucks Template
description: A GitHub action to render nunjucks templates
author: Zoltan Lehoczky
inputs:
template:
description: Nunjucks template string
required: false
template-path:
description: Path to nunjucks template file
required: false
vars:
description: Variables to use in template in JSON format
required: false
default: "{}"
auto-escape:
description: Controls if output with dangerous characters are escaped automatically
required: false
default: "true"
trim-blocks:
description: Automatically remove trailing newlines from a block/tag
required: false
default: "false"
lstrip-blocks:
description: Automatically remove leading whitespace from a block/tag
required: false
default: "false"
outputs:
result:
description: Rendered file content
runs:
using: node20
main: dist/index.js
branding:
icon: file-text
color: green