⬆️ Updating add-on Example to 8975ece

This commit is contained in:
Community Hass.io Add-ons Bot 2021-11-02 10:29:52 +00:00
parent 6c0c9474d9
commit f419b8c8ea
5 changed files with 25 additions and 29 deletions

View file

@ -755,10 +755,10 @@ SOFTWARE.
[bookstack-armhf-shield]: https://img.shields.io/badge/armhf-yes-green.svg [bookstack-armhf-shield]: https://img.shields.io/badge/armhf-yes-green.svg
[bookstack-armv7-shield]: https://img.shields.io/badge/armv7-yes-green.svg [bookstack-armv7-shield]: https://img.shields.io/badge/armv7-yes-green.svg
[bookstack-i386-shield]: https://img.shields.io/badge/i386-yes-green.svg [bookstack-i386-shield]: https://img.shields.io/badge/i386-yes-green.svg
[addon-example]: https://github.com/hassio-addons/addon-example/tree/b1670cf [addon-example]: https://github.com/hassio-addons/addon-example/tree/8975ece
[addon-doc-example]: https://github.com/hassio-addons/addon-example/blob/b1670cf/README.md [addon-doc-example]: https://github.com/hassio-addons/addon-example/blob/8975ece/README.md
[example-issue]: https://github.com/hassio-addons/addon-example/issues [example-issue]: https://github.com/hassio-addons/addon-example/issues
[example-version-shield]: https://img.shields.io/badge/version-b1670cf-blue.svg [example-version-shield]: https://img.shields.io/badge/version-8975ece-blue.svg
[example-aarch64-shield]: https://img.shields.io/badge/aarch64-yes-green.svg [example-aarch64-shield]: https://img.shields.io/badge/aarch64-yes-green.svg
[example-amd64-shield]: https://img.shields.io/badge/amd64-yes-green.svg [example-amd64-shield]: https://img.shields.io/badge/amd64-yes-green.svg
[example-armhf-shield]: https://img.shields.io/badge/armhf-yes-green.svg [example-armhf-shield]: https://img.shields.io/badge/armhf-yes-green.svg

View file

@ -1,4 +1,5 @@
# Changelog since v4.2.1 # Changelog since v4.2.1
- Migrate JSON add-on config to YAML (#102)
- Fix typo in deploy workflow - Fix typo in deploy workflow
- Fix missing dispatch token in deploy workflow - Fix missing dispatch token in deploy workflow
- Fix missing deploy workflow - Fix missing deploy workflow

View file

@ -56,5 +56,5 @@ If you are more interested in stable releases of our add-ons:
[patreon-shield]: https://frenck.dev/wp-content/uploads/2019/12/patreon.png [patreon-shield]: https://frenck.dev/wp-content/uploads/2019/12/patreon.png
[patreon]: https://www.patreon.com/frenck [patreon]: https://www.patreon.com/frenck
[project-stage-shield]: https://img.shields.io/badge/project%20stage-production%20ready-brightgreen.svg [project-stage-shield]: https://img.shields.io/badge/project%20stage-production%20ready-brightgreen.svg
[release-shield]: https://img.shields.io/badge/version-b1670cf-blue.svg [release-shield]: https://img.shields.io/badge/version-8975ece-blue.svg
[release]: https://github.com/hassio-addons/addon-example/tree/b1670cf [release]: https://github.com/hassio-addons/addon-example/tree/8975ece

View file

@ -1,24 +0,0 @@
{
"name": "Example",
"version": "b1670cf",
"slug": "example",
"description": "Example add-on by Community Home Assistant Add-ons",
"url": "https://github.com/hassio-addons/addon-example",
"init": false,
"arch": [
"aarch64",
"amd64",
"armhf",
"armv7",
"i386"
],
"options": {
"log_level": "info",
"seconds_between_quotes": 5
},
"schema": {
"log_level": "list(trace|debug|info|notice|warning|error|fatal)",
"seconds_between_quotes": "int(1,120)"
},
"image": "ghcr.io/hassio-addons/example/{arch}"
}

19
example/config.yaml Normal file
View file

@ -0,0 +1,19 @@
arch:
- aarch64
- amd64
- armhf
- armv7
- i386
description: Example add-on by Community Home Assistant Add-ons
image: ghcr.io/hassio-addons/example/{arch}
init: false
name: Example
options:
log_level: info
seconds_between_quotes: 5
schema:
log_level: list(trace|debug|info|notice|warning|error|fatal)
seconds_between_quotes: int(1,120)
slug: example
url: https://github.com/hassio-addons/addon-example
version: 8975ece