Skip to content

Commit d9c813a

Browse files
authored
Merge pull request #322 from plugwise/hacs
integrate HACS validation workflow
2 parents e41d356 + 1b11f77 commit d9c813a

File tree

3 files changed

+23
-3
lines changed

3 files changed

+23
-3
lines changed

.github/workflows/validate.yaml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Validate
2+
3+
on:
4+
push:
5+
pull_request:
6+
schedule:
7+
- cron: "0 0 * * *"
8+
workflow_dispatch:
9+
10+
permissions: {}
11+
12+
jobs:
13+
validate-hacs:
14+
runs-on: "ubuntu-latest"
15+
steps:
16+
- name: HACS validation
17+
uses: "hacs/action@d556e736723344f83838d08488c983a15381059a"
18+
with:
19+
category: "integration"

custom_components/plugwise_usb/manifest.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,13 @@
22
"domain": "plugwise_usb",
33
"name": "Plugwise USB Beta",
44
"after_dependencies": ["usb"],
5-
"codeowners": ["@CoMPaTech", "@bouwew", "@brefra"],
5+
"codeowners": ["@CoMPaTech", "@bouwew", "@brefra", "@dirixmjm", "@arnoutd_77"],
66
"config_flow": true,
77
"documentation": "https://github.com/plugwise/plugwise_usb-beta",
88
"integration_type": "hub",
99
"iot_class": "local_polling",
10+
"issue_tracker": "https://github.com/plugwise/python-plugwise-usb/issues",
1011
"loggers": ["plugwise_usb"],
1112
"requirements": ["plugwise-usb==0.44.13"],
12-
"version": "0.55.10"
13+
"version": "0.55.11"
1314
}

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "plugwise_usb-beta"
3-
version = "0.55.10"
3+
version = "0.55.11"
44
description = "Plugwise USB custom_component (BETA)"
55
readme = "README.md"
66
requires-python = ">=3.13"

0 commit comments

Comments
 (0)