34 lines
946 B
YAML
Raw Normal View History

2024-11-01 17:25:52 +01:00
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:
2024-11-01 17:31:53 +01:00
type: str
2024-11-01 17:25:52 +01:00
description: "The URL of the Gitea server to register the Act runner."
2024-11-01 17:31:53 +01:00
required: "true"
2024-11-01 17:25:52 +01:00
gitea_token:
2024-11-01 17:31:53 +01:00
type: str
2024-11-01 17:25:52 +01:00
description: "The token for authenticating with Gitea."
2024-11-01 17:31:53 +01:00
required: "true"
2024-11-01 17:25:52 +01:00
repository:
2024-11-01 17:31:53 +01:00
type: str
2024-11-01 17:25:52 +01:00
description: "The Gitea repository to register the runner with, in 'user/repository' format."
2024-11-01 17:31:53 +01:00
required: "true"
2024-11-01 17:25:52 +01:00
act_runner_options:
2024-11-01 17:31:53 +01:00
type: str
2024-11-01 17:25:52 +01:00
description: "Additional options to pass to Act runner."
2024-11-01 17:31:53 +01:00
required: "false"