blob: 63be7989bee45edc36ab8dbc7b2cd482c00938ac (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
name: "Action with pre and post"
description: "Action with pre and post"
inputs:
step:
description: "step"
required: true
runs:
using: "node16"
pre: pre.js
main: main.js
post: post.js
|