Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions .github/workflows/hassfest.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Validate with hassfest

on:
push:
pull_request:
schedule:
- cron: "0 0 * * *"

permissions:
contents: read

jobs:
validate:
runs-on: "ubuntu-latest"
steps:
- uses: "actions/checkout@v4"
- uses: home-assistant/actions/hassfest@master
21 changes: 21 additions & 0 deletions .github/workflows/validate.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Validate

on:
push:
pull_request:
schedule:
- cron: "0 0 * * *"
workflow_dispatch:

permissions:
contents: read

jobs:
validate-hacs:
runs-on: "ubuntu-latest"
steps:
- name: HACS validation
uses: "hacs/action@main"
with:
category: "integration"
github_token: ${{ secrets.GITHUB_TOKEN }}
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
16 changes: 10 additions & 6 deletions custom_components/open_firenet/icons.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,18 @@
{
"entity_component": {
"entity": {
"climate": {
"default": "mdi:fireplace-off",
"state": {
"heat": "mdi:fireplace",
"off": "mdi:fireplace-off"
"open_firenet": {
"default": "mdi:fireplace-off",
"state": {
"heat": "mdi:fireplace",
"off": "mdi:fireplace-off"
}
}
},
"binary_sensor": {
"connectivity": "mdi:wifi-check"
"connected": {
"default": "mdi:wifi-check"
}
}
}
}
6 changes: 3 additions & 3 deletions custom_components/open_firenet/manifest.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"domain": "open_firenet",
"name": "Open Firenet",
"codeowners": ["@openfirenet"],
"config_flow": true,
"documentation": "https://github.com/openfirenet/open-firenet-ha",
"issue_tracker": "https://github.com/openfirenet/open-firenet-ha/issues",
"iot_class": "local_polling",
"version": "1.0.0",
"codeowners": ["@openfirenet"]
"issue_tracker": "https://github.com/openfirenet/open-firenet-ha/issues",
"version": "1.0.0"
}