Skip to content

Commit 4be6154

Browse files
authored
Merge pull request #69 from mkanet/master
Added files necessary to make integration searchable on HACS
2 parents 9cfe47c + 362975b commit 4be6154

File tree

4 files changed

+38
-1
lines changed

4 files changed

+38
-1
lines changed

.github/workflows/hassfest.yaml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
name: Validate with hassfest
2+
3+
on:
4+
push:
5+
pull_request:
6+
schedule:
7+
- cron: "0 0 * * *"
8+
9+
jobs:
10+
validate:
11+
runs-on: "ubuntu-latest"
12+
steps:
13+
- uses: "actions/checkout@v3"
14+
- uses: home-assistant/actions/hassfest@master

.github/workflows/validate.yaml

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

custom_components/plex_recently_added/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@
66
"dependencies": [],
77
"codeowners": ["@maykar"],
88
"requirements": []
9-
}
9+
}

hacs.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"name": "Plex Recently Added",
3+
"content_in_root": false,
4+
"domains": ["sensor"]
5+
}

0 commit comments

Comments
 (0)