-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathaction.yml
More file actions
38 lines (37 loc) · 1.33 KB
/
action.yml
File metadata and controls
38 lines (37 loc) · 1.33 KB
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
name: 'Azure Load Testing'
description: 'Automate continous regression testing with Azure Load Testing'
inputs:
loadtestConfigFile:
description: 'Path of the YAML file. Should be fully qualified path or relative to the default working directory'
required: true
loadtestResource:
description: 'Enter or Select the name of an existing Azure Load Testing resource'
required: true
loadtestRunName:
description: 'Custom name for the load test run'
required: false
loadtestRunDescription:
description: 'Custom description for the load test run'
required: false
resourceGroup:
description: 'Enter or Select the Azure Resource Group that contains the Load test resource specified above'
required: true
secrets:
description: 'Enter secrets in JSON'
required: false
env:
description: 'Enter env in JSON'
required: false
overrideParameters:
description: 'Override parameters in the YAML config file using the JSON format with testId, displayName, description, engineInstances, autoStop supported.'
required: false
outputVariableName:
description: 'Name of the output variable that stores the test run ID for use in subsequent tasks.'
required: false
branding:
icon: 'extension-icon.svg'
color: 'blue'
runs:
using: 'node20'
main: 'lib/main.js'
post: 'lib/postProcessJob.js'