generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 42
/
action.yml
70 lines (70 loc) · 2.31 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: 'Newman Action'
description: 'Run Postman collections via Newman'
author: 'Matt Ball'
branding:
icon: 'check-square'
color: 'orange'
inputs:
apiKey:
description: 'Postman API key'
collection:
description: 'Collection to use'
required: true
environment:
description: 'Environment to use'
envVar:
description: 'Environment variables'
globals:
description: 'Globals to use'
globalVar:
description: 'Global variables'
iterationCount:
description: 'Number of iterations to run on the collection'
iterationData:
description: 'Path to CSV or JSON data file'
folder:
description: 'Name/ID of folders to run instead of entire collection'
workingDir:
description: 'Path to be used as working directory'
insecureFileRead:
description: 'Allow reading files outside of working directory'
timeout:
description: 'Time to wait for the collection run to complete'
timeoutRequest:
description: 'Time to wait for scripts to return a response'
timeoutScript:
description: 'Time to wait for scripts to return a response'
delayRequest:
description: 'Time to wait between subsequent requests'
ignoreRedirects:
description: 'Follow 3xx responses'
insecure:
description: 'Disable SSL verification and allow self-signed SSL'
bail:
description: 'Stop collection run gracefully on error'
suppressExitCode:
description: 'Always exit cleanly'
reporters:
description: 'Reporter to use'
default: '["cli"]'
reporter:
description: 'Reporter options'
color:
description: 'Modify colored CLI output'
sslClientCert:
description: 'Path to public client certificate'
sslClientKey:
description: 'Path to secret client key file'
sslClientPassphrase:
description: 'Secret client key passphrase'
sslClientCertList:
description: 'The path to the client certificate configuration list file.'
sslExtraCaCerts:
description: 'The path to the file, that holds one or more trusted CA certificates in PEM format.'
requestAgents:
description: 'Specify the custom requesting agents to be used when performing HTTP and HTTPS requests respectively.'
cookieJar:
description: 'Pass a CookieJar file path as string to this property that will be deserialized using tough-cookie.'
runs:
using: 'node20'
main: 'dist/index.js'