-
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
6 changed files
with
73 additions
and
3 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,21 @@ | ||
name: "Validate HACS" | ||
on: | ||
push: | ||
branches: | ||
- main | ||
pull_request: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
|
||
- name: Validate HACS | ||
run: | | ||
mkdir temp && cd temp | ||
wget -q https://raw.githubusercontent.com/hacs/integration/main/scripts/hacs_validator.sh | ||
bash hacs_validator.sh ../custom_components/furnace_filter_reminder |
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,7 @@ | ||
{ | ||
"name": "Furnace Filter Reminder", | ||
"hide_default_branch": false, | ||
"domains": ["furnace_filter_reminder"], | ||
"country": ["US", "CA"], | ||
"iot_class": "local_polling" | ||
} |
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,7 @@ | ||
|
||
{ | ||
"config": { | ||
"title": "Furnace Filter Reminder Configuration", | ||
"description": "Track your furnace runtime and receive reminders." | ||
} | ||
} |
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
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
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 @@ | ||
|
||
{ | ||
"title": "Furnace Filter Reminder", | ||
"step": { | ||
"user": { | ||
"title": "Configure Furnace Filter Reminder", | ||
"description": "Set up runtime tracking for your furnace filter.", | ||
"data": { | ||
"name": "Name of the Reminder", | ||
"hours": "Hours until reminder" | ||
} | ||
} | ||
}, | ||
"options": { | ||
"init": { | ||
"title": "Adjust Settings", | ||
"description": "Modify runtime threshold or other settings." | ||
} | ||
} | ||
} |