34 lines
946 B
YAML
34 lines
946 B
YAML
name: "Act Runner and Ansible Add-on"
|
|
version: "1.0.0"
|
|
slug: "act_runner_ansible"
|
|
description: "Home Assistant add-on that runs Act runner with Gitea integration."
|
|
arch:
|
|
- aarch64
|
|
- amd64
|
|
- armhf
|
|
- armv7
|
|
- i386
|
|
startup: "application"
|
|
boot: "auto"
|
|
options:
|
|
gitea_url: "https://your-gitea-instance.com"
|
|
gitea_token: "your_token"
|
|
repository: "user/repository"
|
|
act_runner_options: "--secret-file my.secrets --env-file my.env"
|
|
schema:
|
|
gitea_url:
|
|
type: str
|
|
description: "The URL of the Gitea server to register the Act runner."
|
|
required: "true"
|
|
gitea_token:
|
|
type: str
|
|
description: "The token for authenticating with Gitea."
|
|
required: "true"
|
|
repository:
|
|
type: str
|
|
description: "The Gitea repository to register the runner with, in 'user/repository' format."
|
|
required: "true"
|
|
act_runner_options:
|
|
type: str
|
|
description: "Additional options to pass to Act runner."
|
|
required: "false" |