Initial version of the automatic addon updater

This commit is contained in:
Alexandre
2021-01-30 20:33:19 +01:00
parent 179f5a56b1
commit a73b888e1d
5 changed files with 167 additions and 0 deletions

View File

@@ -0,0 +1,31 @@
{
"name": "Addons_Updater",
"version": "1.0",
"slug": "updater",
"description": "Automatic addons update upon upstream new release",
"url": "https://github.com/alexbelgium/hassio-addons/tree/master/updater",
"arch": [
"aarch64",
"amd64",
"armv7",
"armhf"
],
"ports": {
},
"ports_description": {
},
"environment": {
},
"options": {
"addon": [{ "slug": "addon slug", "current": "1.1.1.1", "beta": false, "repository": "https://github.com/user/repo", "upstream": "github_user/repo_name" }],
"gituser": "gituser",
"gitpass": "gitpassword",
"frequency": 7
},
"schema": {
"addon": [{ "slug": "str", "current": "str", "beta": "bool" , "repository": "str", "upstream": "str"}],
"gituser": "str",
"gitpass": "str",
"frequency": "int"
}
}