Files
addons/git_pull/config.json

51 lines
1.3 KiB
JSON

{
"name": "Git pull",
"version": "7.12",
"slug": "git_pull",
"description": "Simple git pull to update the local configuration",
"url": "https://github.com/home-assistant/hassio-addons/tree/master/git_pull",
"arch": ["armhf", "armv7", "aarch64", "amd64", "i386"],
"advanced": true,
"init": false,
"startup": "services",
"boot": "manual",
"hassio_api": true,
"hassio_role": "homeassistant",
"map": ["config:rw"],
"options": {
"deployment_key": [],
"deployment_key_protocol": "rsa",
"deployment_user": "",
"deployment_password": "",
"git_branch": "master",
"git_command": "pull",
"git_remote": "origin",
"git_prune": false,
"repository": null,
"auto_restart": false,
"restart_ignore": ["ui-lovelace.yaml", ".gitignore"],
"repeat": {
"active": false,
"interval": 300
}
},
"schema": {
"deployment_key": ["str"],
"deployment_key_protocol": "match(rsa|dsa|ecdsa|ed25519|rsa)",
"deployment_user": "str",
"deployment_password": "str",
"git_branch": "str",
"git_command": "list(pull|reset)",
"git_remote": "str",
"git_prune": "bool",
"repository": "str",
"auto_restart": "bool",
"restart_ignore": ["str"],
"repeat": {
"active": "bool",
"interval": "int"
}
},
"image": "homeassistant/{arch}-addon-git_pull"
}