-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaction.yml
More file actions
29 lines (29 loc) · 1.27 KB
/
Copy pathaction.yml
File metadata and controls
29 lines (29 loc) · 1.27 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
name: "Coswarm Deploy"
description: "Trigger the Coswarm deployment API with a Docker image reference."
author: "Coswarm"
inputs:
token:
description: "API token with permission to deploy the app."
required: true
image:
description: "Container image tag to deploy. Example: redis:alpine"
required: true
base-url:
description: "Coswarm API base URL. Must be provided explicitly."
required: true
github-token:
description: "GitHub token used to create issues/comments and update releases. Defaults to GITHUB_TOKEN.\n\nIf you rely on the default GITHUB_TOKEN, ensure the calling workflow grants the action write permissions (for example `contents: write` and `issues: write`). For workflows triggered from forks, secrets and write permissions may be unavailable — in that case provide a Personal Access Token (PAT) via this input with minimal required scopes (e.g. `repo`/`public_repo`)."
required: false
timeout-ms:
description: "Maximum time in milliseconds to wait for the Coswarm deploy API before aborting. Defaults to 60000."
required: false
default: "60000"
outputs:
response:
description: "Raw response body returned by the Coswarm API."
runs:
using: "node24"
main: "build/index.mjs"
branding:
icon: "cloud"
color: "blue"