-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathaction.yml
More file actions
32 lines (32 loc) · 964 Bytes
/
action.yml
File metadata and controls
32 lines (32 loc) · 964 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
31
32
name: 'Event Transformer'
description: 'Templating on the go'
author: 'anuraag016'
inputs:
accessToken:
description: 'access token available in the workflow file to authenticate call to github api'
default: ${{ github.token }}
repoName:
description: 'input repo for templates here'
required: true
default: ${{ github.repository }}
branchName:
description: 'branch name here'
required: true
default: ${{ github.event.repository.default_branch }}
data:
description: 'input data to use for rendering'
default: null
templateType:
description: 'template type to use ex. HandleBars, Liquid'
required: true
default: null
sourceType:
description: 'source type as mentioned in the template config for the template'
required: true
default: null
clientType:
description: 'client type can be null to indicate event transformer'
default: null
runs:
using: 'node12'
main: 'dist/index.js'