forked from hassio-addons/repository-edge
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
24 changed files
with
898 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,163 @@ | ||
# EDGE - Community Hass.io Add-ons for Home Assistant | ||
|
||
![Project Stage][project-stage-shield] | ||
![Maintenance][maintenance-shield] | ||
[![License][license-shield]](LICENSE.md) | ||
|
||
[![GitLab CI][gitlabci-shield]][gitlabci] | ||
![Awesome][awesome-shield] | ||
|
||
[![Discord][discord-shield]][discord] | ||
[![Community Forum][forum-shield]][forum] | ||
|
||
## WARNING! THIS IS AN EDGE REPOSITORY | ||
|
||
This Hass.io Add-ons repository contains edge builds of add-ons. Edge builds | ||
add-ons build are based upon the latest development version. | ||
|
||
- They may not work at all. | ||
- They might stop working at any time. | ||
- They could have a negative impact on your system. | ||
|
||
This repository was created for: | ||
|
||
- Anybody willing to test. | ||
- Anybody interested in trying out upcoming add-ons or add-on features. | ||
- Developers. | ||
|
||
If you are more interested in stable releases of our add-ons: | ||
|
||
<https://github.com/hassio-addons/repository> | ||
|
||
## Installation | ||
|
||
Adding this add-ons repository to your Hass.io Home Assistant instance is | ||
pretty easy. Follow [the official instructions][third-party-addons] on the | ||
website of Home Assistant, and use the following URL: | ||
|
||
```txt | ||
{{ repo }} | ||
``` | ||
|
||
## Add-ons provided by this repository | ||
|
||
{% for addon in addons %} | ||
### ✓ [{{ addon.name }}][addon-{{ addon.target }}] | ||
|
||
![Latest Version][{{ addon.target }}-version-shield] | ||
![Supports armhf Architecture][{{ addon.target }}-armhf-shield] | ||
![Supports aarch64 Architecture][{{ addon.target }}-aarch64-shield] | ||
![Supports amd64 Architecture][{{ addon.target }}-amd64-shield] | ||
![Supports i386 Architecture][{{ addon.target }}-i386-shield] | ||
![Docker Pulls][{{ addon.target }}-pulls-shield] | ||
|
||
{{ addon.description }} | ||
|
||
[:books: {{ addon.name }} add-on documentation][addon-doc-{{ addon.target }}] | ||
|
||
{% endfor %} | ||
## Releases | ||
|
||
Add-on releases are **NOT** based on [Semantic Versioning][semver], unlike | ||
all our other repositories. The latest build commit SHA hash of each | ||
add-on, represents the version number. | ||
|
||
## Support | ||
|
||
Got questions? | ||
|
||
You have several options to get them answered: | ||
|
||
- The Home Assistant [Community Forum][forum]. | ||
- The Home Assistant [Discord Chat Server][discord]. | ||
- Join the [Reddit subreddit][reddit] in [/r/homeassistant][reddit] | ||
|
||
You could also open an issue here on GitHub. Note, we use a separate | ||
GitHub repository for each add-on. Please ensure you are creating the issue | ||
on the correct GitHub repository matching the add-on. | ||
|
||
{% for addon in addons %} | ||
- [Open an issue for the add-on: {{ addon.name }}][{{ addon.target }}-issue] | ||
{% endfor %} | ||
|
||
For a general repository issue or add-on ideas [open an issue here][issue] | ||
|
||
## Contributing | ||
|
||
This is an active open-source project. We are always open to people who want to | ||
use the code or contribute to it. | ||
|
||
We have set up a separate document containing our | ||
[contribution guidelines](CONTRIBUTING.md). | ||
|
||
Thank you for being involved! :heart_eyes: | ||
|
||
## Adding a new add-on | ||
|
||
Have you created an add-on that you want to list in the Community Repository? | ||
Contact [Franck Nijhof][frenck]: | ||
|
||
- Drop him an email: [email protected] | ||
- Chat with him on [Discord Chat][discord]: Frenck#4484 (@frenck) | ||
- Message him via the forums: [frenck][forum-frenck] | ||
|
||
He will set up a GitHub repository and all the other plumbing, | ||
and of course, give you developer access to your contribution. | ||
|
||
## License | ||
|
||
MIT License | ||
|
||
Copyright (c) 2018 Franck Nijhof | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in all | ||
copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
SOFTWARE. | ||
|
||
{% for addon in addons %} | ||
[addon-{{ addon.target }}]: {{ addon.repo }}/tree/{{ addon.version }} | ||
[addon-doc-{{ addon.target}}]: {{ addon.repo }}/blob/{{ addon.version }}/README.md | ||
[{{ addon.target }}-issue]: {{ addon.repo }}/issues | ||
[{{ addon.target }}-version-shield]: https://img.shields.io/badge/version-{{ addon.version }}-blue.svg | ||
{% for arch in ['armhf', 'amd64', 'i386', 'aarch64'] %} | ||
{% if arch in addon.archs %} | ||
[{{ addon.target }}-pulls-shield]: https://img.shields.io/docker/pulls/{{ addon.images[arch] }}.svg | ||
{% break %} | ||
{% endif %} | ||
{% endfor %} | ||
{% for arch in ['aarch64', 'amd64', 'armhf', 'i386'] %} | ||
{% if arch in addon.archs %} | ||
[{{ addon.target }}-{{ arch }}-shield]: https://img.shields.io/badge/{{ arch }}-yes-green.svg | ||
{% else %} | ||
[{{ addon.target }}-{{ arch }}-shield]: https://img.shields.io/badge/{{ arch }}-no-red.svg | ||
{% endif %} | ||
{% endfor %} | ||
{% endfor %} | ||
[awesome-shield]: https://img.shields.io/badge/awesome%3F-yes-brightgreen.svg | ||
[discord-shield]: https://img.shields.io/discord/330944238910963714.svg | ||
[discord]: https://discord.gg/c5DvZ4e | ||
[forum-shield]: https://img.shields.io/badge/community-forum-brightgreen.svg | ||
[forum]: https://community.home-assistant.io?u=frenck | ||
[forum-frenck]: https://community.home-assistant.io/u/frenck/?u=frenck | ||
[frenck]: https://github.com/frenck | ||
[issue]: https://github.com/{{ name }}/issues | ||
[license-shield]: https://img.shields.io/github/license/{{ name }}.svg | ||
[maintenance-shield]: https://img.shields.io/maintenance/yes/2018.svg | ||
[project-stage-shield]: https://img.shields.io/badge/project%20stage-experimental-yellow.svg | ||
[reddit]: https://reddit.com/r/homeassistant | ||
[semver]: http://semver.org/spec/v2.0.0.html | ||
[third-party-addons]: https://home-assistant.io/hassio/installing_third_party_addons/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
root = true | ||
|
||
[*] | ||
charset = utf-8 | ||
end_of_line = lf | ||
indent_style = space | ||
insert_final_newline = true | ||
trim_trailing_whitespace = true | ||
ident_size = 4 | ||
|
||
[*.md] | ||
ident_size = 2 | ||
trim_trailing_whitespace = false | ||
|
||
[*.json] | ||
ident_size = 2 | ||
|
||
[{.gitignore,.gitkeep,.editorconfig}] | ||
ident_size = 2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
# Require maintainer's :+1: for changes to the .github/ repo-config files | ||
# mainly due to https://github.com/probot/settings privilege escalation | ||
.github/* @frenck | ||
.gitlab-ci.yml @frenck |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# Problem/Motivation | ||
|
||
> (Why the issue was filed) | ||
## Expected behavior | ||
|
||
> (What you expected to happen) | ||
## Actual behavior | ||
|
||
> (What actually happened) | ||
## Steps to reproduce | ||
|
||
> (How can someone else make/see it happen) | ||
## Proposed changes | ||
|
||
> (If you have a proposed change, workaround or fix, | ||
> describe the rationale behind it) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# Proposed Changes | ||
|
||
> (Describe the changes and rationale behind them) | ||
## Related Issues | ||
|
||
> ([Github link][autolink-references] to related issues or pull requests) | ||
[autolink-references]: https://help.github.com/articles/autolinked-references-and-urls/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
--- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
--- | ||
# Configuration for request-info - https://github.com/behaviorbot/request-info | ||
|
||
# *OPTIONAL* Comment to reply with | ||
# Can be either a string : | ||
requestInfoReplyComment: | ||
- "We would appreciate it if you could provide us with more info about this issue/pr!" | ||
- "Hmmm... That issue/PR is kinda low on text. Could you please provide some more content?" | ||
|
||
# *OPTIONAL* default titles to check against for lack of descriptiveness | ||
# MUST BE ALL LOWERCASE | ||
requestInfoDefaultTitles: [] | ||
|
||
# *OPTIONAL* Label to be added to Issues and Pull Requests with insufficient information given | ||
requestInfoLabelToAdd: "Incomplete" | ||
|
||
# *OPTIONAL* Require Pull Requests to contain more information than what is provided in the PR template | ||
# Will fail if the pull request's body is equal to the provided template | ||
checkPullRequestTemplate: true | ||
|
||
# *OPTIONAL* Only warn about insufficient information on these events type | ||
# Keys must be lowercase. Valid values are 'issue' and 'pullRequest' | ||
requestInfoOn: | ||
pullRequest: true | ||
issue: true | ||
|
||
# *OPTIONAL* Add a list of people whose Issues/PRs will not be commented on | ||
# keys must be GitHub usernames | ||
requestInfoUserstoExclude: [] | ||
|
||
# Configuration for new-issue-welcome - https://github.com/behaviorbot/new-issue-welcome | ||
|
||
# Comment to be posted to on first time issues | ||
newIssueWelcomeComment: > | ||
:wave: Thanks for opening your first issue here! | ||
If you're reporting a :bug: bug, please make sure you include steps to reproduce it. | ||
Also, logs, error messages and information about your hardware might be usefull. | ||
# Configuration for new-pr-welcome - https://github.com/behaviorbot/new-pr-welcome | ||
|
||
# Comment to be posted to on PRs from first time contributors in your repository | ||
newPRWelcomeComment: > | ||
:sparkling_heart: Thanks for opening this pull request! :sparkling_heart: | ||
If your PR gets accepted and merged in, we will invite you to the project :tada: | ||
# Configuration for first-pr-merge - https://github.com/behaviorbot/first-pr-merge | ||
|
||
# Comment to be posted to on pull requests merged by a first time user | ||
firstPRMergeComment: > | ||
Congrats on merging your first pull request! :tada::tada::tada: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
--- | ||
# If true, this will add new contributors as outside collaborators | ||
# to the repo their PR was merged in. Team name is ignored if this | ||
# flag is set to true. | ||
isOutside: false | ||
|
||
# Specify team name to add new contributors to a specific team | ||
# within your organization. | ||
# Use team name or team-name-slug | ||
team: Contributors |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
--- | ||
# Configuration for lock-threads - https://github.com/dessant/lock-threads | ||
# Number of days of inactivity before a closed issue or pull request is locked | ||
daysUntilLock: 30 | ||
|
||
# Comment to post before locking. Set to `false` to disable | ||
lockComment: > | ||
This thread has been automatically locked because it has not had recent | ||
activity. Please open a new issue for related bugs and link to relevant | ||
comments in this thread. | ||
# Issues or pull requests with these labels will not be locked | ||
# exemptLabels: | ||
# - no-locking | ||
|
||
# Limit to only `issues` or `pulls` | ||
# only: issues | ||
|
||
# Add a label when locking. Set to `false` to disable | ||
lockLabel: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
--- | ||
# Delete the command comment when it contains no other content | ||
deleteCommand: true | ||
|
||
# Close the source issue after moving | ||
closeSourceIssue: true | ||
|
||
# Lock the source issue after moving | ||
lockSourceIssue: true | ||
|
||
# Mention issue and comment authors | ||
mentionAuthors: true | ||
|
||
# Preserve mentions in the issue content | ||
keepContentMentions: false | ||
|
||
# Set custom aliases for targets | ||
# aliases: | ||
# r: repo | ||
# or: owner/repo |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
--- | ||
# Configuration for probot-no-response - https://github.com/probot/no-response | ||
# Number of days of inactivity before an Issue is closed for lack of response | ||
daysUntilClose: 14 | ||
# Label requiring a response | ||
responseRequiredLabel: "Status: Awaiting response" | ||
# Comment to post when closing an Issue for lack of response. Set to `false` to disable | ||
closeComment: > | ||
This issue has been automatically closed because there has been no response | ||
to our request for more information from the original author. With only the | ||
information that is currently in the issue, we don't have enough information | ||
to take action. Please reach out if you have or find the answers we need so | ||
that we can investigate further. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
--- | ||
# Label name and color to set, when potential duplicates are detected | ||
issueLabel: "Potential duplicate" | ||
labelColor: e6e6e6 | ||
|
||
# If similarity is higher than this threshold, issue will be marked as duplicate | ||
threshold: 0.70 | ||
|
||
# Comment to post when potential duplicates are detected | ||
referenceComment: > | ||
Potential duplicates found: | ||
{{#issues}} | ||
- [#{{ number }}] {{ title }} ({{ accuracy }}%) | ||
{{/issues}} |
Oops, something went wrong.