generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
66 lines (62 loc) · 2.27 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
name: 'Anka Actions - Down'
description: 'Spins down existing Anka VM Instance through your Anka Build Cloud Controller.'
author: 'Veertu Inc.'
branding:
icon: 'arrow-down'
color: 'purple'
inputs:
# Github
gh-owner:
description: 'GitHub repository owner'
required: false
default: ${{ github.repository_owner }}
gh-repository:
description: 'GitHub repository the github action runner will be attached to'
required: false
default: ${{ github.repository }}
gh-base-url:
description: 'GitHub Enterprise Server base url with /api/v3 on the end. At the moment only v3 is supported'
required: false
default: "https://api.github.com"
gh-pat:
description: 'GitHub personal access token (requires "repo" scope access)'
required: true
# Connection
controller-url:
description: "The Anka Build Cloud Controller's URL to communicate with"
required: true
controller-root-token:
description: "Anka Build Cloud Controller's Root Token used for authentication"
required: false
controller-tls-ca:
description: "Anka Build Cloud Controller TLS certificate's CA (needed if controller TLS cert is self-signed)"
required: false
controller-https-skip-cert-verify:
description: "Skip the Anka Build Cloud Controller's TLS certificate verification"
required: false
default: 'false'
controller-auth-cert:
description: "Certificate to use for authorization with the Anka Build Cloud Controller"
required: false
controller-auth-cert-key:
description: "Private key to use for authorization with the Anka Build Cloud Controller"
required: false
controller-auth-cert-passphrase:
description: "The Auth Certificate's passphrase"
required: false
# Timeouts
controller-http-poll-delay:
description: "Delay (in seconds) between the HTTP requests to the Anka Build Cloud Controller's API"
required: false
default: '5'
job-ttl:
description: 'TTL (in seconds) after which job will be forced to stop (fails with an error) (disable with 0)'
required: false
# 5 minutes
default: '300'
action-id:
description: 'This should be the unique action identifier from anka-actions-up (example: needs.action-up.outputs.action-id)'
required: true
runs:
using: 'node16'
main: 'dist/index.js'