Files
addons/git_pull/config.json
Franck Nijhof c47b3673de ⬆️ Upgrades Hassio CLI to 1.4.0 (#411)
* ⬆️ Upgrades Hassio CLI to 1.4.0

* Update CHANGELOG.md

* Update config.json

* Update CHANGELOG.md

* Update config.json

* Update CHANGELOG.md
2018-09-23 01:27:37 +02:00

46 lines
1.2 KiB
JSON

{
"name": "Git pull",
"version": "5",
"slug": "git_pull",
"description": "Simple git pull to update the local configuration",
"url": "https://home-assistant.io/addons/git_pull/",
"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,
"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": "match(pull|reset)",
"git_remote": "str",
"git_prune": "bool",
"repository": "match((?:.+):(\/\/)?(.*?)(\\.git)(\/?|\\#[-\\d\\w._]+?))",
"auto_restart": "bool",
"repeat": {
"active": "bool",
"interval": "int"
}
},
"image": "homeassistant/{arch}-addon-git_pull"
}