generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathaction.yml
70 lines (69 loc) · 2.44 KB
/
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
name: 'Camunda 8 Action'
description: 'A GitHub action to interact with Camunda SaaS'
author: 'Josh Wulf'
branding:
icon: 'upload-cloud'
color: 'orange'
inputs:
operation: # change this
required: true
description: 'The operation to perform. One of publishMessage | createProcessInstance | createProcessInstanceWithResult | deployProcess | startWorker'
messageName:
required: false
description: "The name of the message for a publishMessage operation"
variables:
required: false
description: "The stringified JSON of the variables for the operation"
default: "{}"
correlationKey:
required: false
description: "The correlationKey for a publishMessage operation"
timeToLive:
required: false
description: "The timeToLive for the message sent by a publishMessage operation"
bpmnFilename:
required: false
description: "The bpmn file to deploy"
bpmnDirectory:
required: false
description: "A directory from which to deploy bpmn files"
bpmnProcessId:
required: false
description: "The id of the process definition for a createProcessInstance operation"
requestTimeout:
required: false
description: "The requestTimeout for a createProcessInstanceWithResult operation"
zeebeAddress:
required: false
description: "The ZEEBE_ADDRESS from your Camunda SaaS client credentials"
zeebeClientId:
required: false
description: "The ZEEBE_CLIENT_ID from your Camunda SaaS client credentials"
zeebeClientSecret:
required: false
description: "The ZEEBE_CLIENT_SECRET from your Camunda SaaS client credentials"
zeebeAuthorizationServerUrl:
required: false
description: "The ZEEBE_AUTHORIZATION_SERVER_URL from your Camunda SaaS client credentials"
clientConfig:
required: true
description: "The client credentials for Camunda SaaS"
workerHandlerFile:
required: false
description: "The file in your repo to load the worker handlers from"
workerLifetimeMins:
required: false
description: "The number of minutes that the workers stay active"
default: "10"
verbose:
required: false
description: Set to true for verbose debugging information
quiet:
required: false
description: Set the LOGLEVEL of the Zeebe Client and Worker to NONE
outputs:
result: # id of the output
description: 'The JSON stringified response from the operation, if a createProcess operation'
runs:
using: 'node16'
main: 'dist/index.js'