Skip to content

Commit

Permalink
Merge pull request #56 from jekalmin/add-hacs
Browse files Browse the repository at this point in the history
add hacs validation
  • Loading branch information
jekalmin authored Dec 23, 2023
2 parents f858745 + 903d83c commit 5c0fd21
Show file tree
Hide file tree
Showing 3 changed files with 38 additions and 1 deletion.
14 changes: 14 additions & 0 deletions .github/workflows/hassfest.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: Validate with hassfest

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

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

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

jobs:
validate-hacs:
runs-on: "ubuntu-latest"
steps:
- uses: "actions/checkout@v3"
- name: HACS validation
uses: "hacs/action@main"
with:
category: "integration"
7 changes: 6 additions & 1 deletion custom_components/extended_openai_conversation/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,16 @@
],
"config_flow": true,
"dependencies": [
"conversation"
"conversation",
"history",
"recorder",
"rest",
"scrape"
],
"documentation": "https://github.com/jekalmin/extended_openai_conversation",
"integration_type": "service",
"iot_class": "cloud_polling",
"issue_tracker": "https://github.com/jekalmin/extended_openai_conversation/issues",
"requirements": [
"openai==0.27.2"
],
Expand Down

0 comments on commit 5c0fd21

Please sign in to comment.