-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add basic action implementation (#1)
Closes #1
- Loading branch information
1 parent
98ebe15
commit c7587e0
Showing
10 changed files
with
27,306 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
name: 'Hetzner Cloud API Action' | ||
description: 'Interact with the Hetzner Cloud API from a GitHub' | ||
inputs: | ||
verbose: | ||
description: 'Whether to output verbose logs' | ||
required: false | ||
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 | ||
runs: | ||
using: 'node20' | ||
main: 'dist/index.js' |
Oops, something went wrong.