-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaction.yml
More file actions
98 lines (98 loc) · 3.52 KB
/
Copy pathaction.yml
File metadata and controls
98 lines (98 loc) · 3.52 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
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
# action.yml
name: 'TestingBot Tunnel Action'
description: 'A GitHub action to launch the TestingBot Tunnel'
author: Jochen Delabie
branding:
icon: grid
color: blue
inputs:
key:
description: TestingBot API Key
required: true
secret:
description: TestingBot API Secret
required: true
debug:
description: Enables debug messages. Will output request/response headers.
required: false
tbVersion:
description: Version of the TestingBot Tunnel docker image.
required: false
default: 'latest'
retryTimeout:
description: Do not retry if this amount of minutes has passed since starting.
required: false
default: '10'
readyTimeout:
description: Seconds to wait for the tunnel ready-file after starting the container.
required: false
default: '60'
auth:
description: Performs Basic Authentication for specific hosts, only works with HTTP.
required: false
dns:
description: "Use a custom DNS server. For example: 8.8.8.8"
required: false
doctor:
description: Perform sanity/health checks to detect possible misconfiguration or problems.
required: false
extraHeaders:
description: "Inject extra headers in the requests the tunnel makes. Value should be a JSON string."
required: false
fastFailRegexps:
description: Specify domains you don't want to proxy, comma separated.
required: false
hubPort:
description: Use this if you want to connect to port 80 on the TestingBot hub instead of the default port 4444.
required: false
metricsPort:
description: Port to expose tunnel metrics on. Default 8003.
required: false
noBump:
description: Do not perform SSL bumping.
required: false
noCache:
description: Bypass TestingBot Caching Proxy running on the tunnel VM.
required: false
noProxy:
description: Do not start a local proxy (requires user provided proxy server on port 8087).
required: false
pac:
description: Proxy autoconfiguration. Should be a http(s) URL
required: false
proxy:
description: "Specify an upstream proxy: PROXYHOST:PROXYPORT"
required: false
proxyCredentials:
description: Username and password required to access the proxy configured with proxy
required: false
sePort:
description: The local port your Selenium test should connect to. Default port is 4445
required: false
localProxy:
description: The port to launch the local proxy on (default 8087).
required: false
shared:
description: Share this tunnel with other users in your team. Defaults to private.
required: false
tunnelIdentifier:
description: A unique identifier for the Tunnel
required: false
web:
description: Point to a directory for testing — starts a local webserver serving that directory.
required: false
uploadLogFile:
description: Upload the TestingBot log file as artifact
required: false
default: 'true'
outputs:
container-id:
description: Docker container ID of the running TestingBot Tunnel
tunnel-identifier:
description: The tunnel identifier (echoed from the tunnelIdentifier input)
log-file:
description: Absolute path to the tunnel log file on the runner
runs:
using: 'node24'
main: 'dist/main/index.js'
post: 'dist/post/index.js'