generated from actions/javascript-action
-
Notifications
You must be signed in to change notification settings - Fork 1
/
action.yml
24 lines (24 loc) · 807 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
name: 'simple-template-renderer'
description: 'Replaces some ${TOKEN} in files by the corresponding env variable.'
author: NicoG60
branding:
icon: code
color: purple
inputs:
input:
description: 'The file(s) to match. Glob pattern can be used'
required: true
follow-symbolic-links:
description: 'Indicates whether to follow symbolic links'
default: true
output:
description: 'A directory to save the rendered file(s) to. If omitted, changes are done in place.'
hard-fail:
description: 'Indicate whether to make the action fail when a match could not be replaced. Default just prints a warning'
default: false
enable-log:
description: 'Whether the action should log the input and output content'
default: false
runs:
using: 'node12'
main: 'dist/index.js'