-
Notifications
You must be signed in to change notification settings - Fork 6
/
action.yml
38 lines (30 loc) · 903 Bytes
/
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
name: "DigitalOcean Doorkeeper"
description: "Open or close a specific port in your DigitalOcean firewall."
inputs:
digitaloceanToken:
description: "Digital Ocean token"
required: true
firewallName:
description: "Name of the firewall attached to your droplet"
required: true
actionToDo:
description: "'add'/'remove' the Github's IP"
required: true
protocol:
description: "Protocol used by the service to update"
required: true
default: "tcp"
IP:
description: "IP that will be added / removed. If it's not set, doorkeeper uses the local ip."
required: false
port:
description: "Port used by the service to update"
required: true
default: 22
dryRun:
description: "Specify true if you just want to check the action without apply it."
required: true
default: false
runs:
using: "node16"
main: "dist/index.js"