-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaction.yml
More file actions
36 lines (36 loc) · 1.06 KB
/
action.yml
File metadata and controls
36 lines (36 loc) · 1.06 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
name: 'Hetzner Cloud API Action'
description: 'Interact with the Hetzner Cloud API from a GitHub'
inputs:
api-token:
description: 'The Hetzner Cloud API token'
required: true
action:
description: 'The action to perform'
required: true
server-image:
description: 'The image to use for the server'
required: false
server-location:
description: 'The location to create the server in'
required: false
server-name:
description: 'The name of the server'
required: false
server-ipv4-id:
description: 'The ID of the IPv4 address to assign to the server'
required: false
server-type:
description: 'The type of the server'
required: false
ssh-key-names:
description: 'The names of the SSH keys to add to the server, separated by commas'
required: false
server-start-after-create:
description: 'Whether to start the server after creating it'
required: false
server-id:
description: 'The ID of the server to perform the action on'
required: false
runs:
using: 'node20'
main: 'dist/index.js'