mirror of
https://github.com/aljazceru/addons.git
synced 2025-12-17 13:14:21 +01:00
Remove .git suffix from schema (#966)
* Remove .git suffix from schema * Fix expression * Update CHANGELOG.md * Version bump to 7.8 in config.json * Remove requirement to add .git * Update build.json * Update CHANGELOG.md * Update config.json Co-authored-by: Pascal Vizeli <pascal.vizeli@syshack.ch>
This commit is contained in:
committed by
Pascal Vizeli
parent
903588ff47
commit
533e15732e
@@ -1,5 +1,10 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## 7.8
|
||||||
|
|
||||||
|
- Added support for Azure DevOps repositories by removing the requirement for the `.git` suffix
|
||||||
|
- Update to Alpine 3.11
|
||||||
|
|
||||||
## 7.7
|
## 7.7
|
||||||
|
|
||||||
- Update Hass.io CLI to 3.1.1
|
- Update Hass.io CLI to 3.1.1
|
||||||
|
|||||||
@@ -98,7 +98,7 @@ Branch name of the Git repo. If left empty, the currently checked out branch wil
|
|||||||
|
|
||||||
### Option: `repository` (required)
|
### Option: `repository` (required)
|
||||||
|
|
||||||
Git URL to your repository (make sure to use double quotes). You have to add `.git` to your repository URL (see example configuration).
|
Git URL to your repository (make sure to use double quotes).
|
||||||
|
|
||||||
### Option: `auto_restart` (required)
|
### Option: `auto_restart` (required)
|
||||||
|
|
||||||
|
|||||||
@@ -1,10 +1,10 @@
|
|||||||
{
|
{
|
||||||
"build_from": {
|
"build_from": {
|
||||||
"aarch64": "homeassistant/aarch64-base:3.10",
|
"aarch64": "homeassistant/aarch64-base:3.11",
|
||||||
"amd64": "homeassistant/amd64-base:3.10",
|
"amd64": "homeassistant/amd64-base:3.11",
|
||||||
"armhf": "homeassistant/armhf-base:3.10",
|
"armhf": "homeassistant/armhf-base:3.11",
|
||||||
"armv7": "homeassistant/armv7-base:3.10",
|
"armv7": "homeassistant/armv7-base:3.11",
|
||||||
"i386": "homeassistant/i386-base:3.10"
|
"i386": "homeassistant/i386-base:3.11"
|
||||||
},
|
},
|
||||||
"args": {
|
"args": {
|
||||||
"CLI_VERSION": "3.1.1"
|
"CLI_VERSION": "3.1.1"
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "Git pull",
|
"name": "Git pull",
|
||||||
"version": "7.7",
|
"version": "7.8",
|
||||||
"slug": "git_pull",
|
"slug": "git_pull",
|
||||||
"description": "Simple git pull to update the local configuration",
|
"description": "Simple git pull to update the local configuration",
|
||||||
"url": "https://github.com/home-assistant/hassio-addons/tree/master/git_pull",
|
"url": "https://github.com/home-assistant/hassio-addons/tree/master/git_pull",
|
||||||
@@ -33,10 +33,10 @@
|
|||||||
"deployment_user": "str",
|
"deployment_user": "str",
|
||||||
"deployment_password": "str",
|
"deployment_password": "str",
|
||||||
"git_branch": "str",
|
"git_branch": "str",
|
||||||
"git_command": "match(pull|reset)",
|
"git_command": "list(pull|reset)",
|
||||||
"git_remote": "str",
|
"git_remote": "str",
|
||||||
"git_prune": "bool",
|
"git_prune": "bool",
|
||||||
"repository": "match((?:.+):(//)?(.*?)(\\.git)(/?|\\#[-\\d\\w._]+?))",
|
"repository": "str",
|
||||||
"auto_restart": "bool",
|
"auto_restart": "bool",
|
||||||
"restart_ignore": ["str"],
|
"restart_ignore": ["str"],
|
||||||
"repeat": {
|
"repeat": {
|
||||||
|
|||||||
Reference in New Issue
Block a user