Skip to content

Commit

Permalink
feat: add hacs workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
gregoryduckworth committed Nov 24, 2023
1 parent 19c8518 commit 43a7695
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/hassfest.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
name: Validate with hassfest

on:
pull_request:
workflow_dispatch:

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

on:
pull_request:
workflow_dispatch:

jobs:
validate-hacs:
runs-on: "ubuntu-latest"
steps:
- uses: "actions/checkout@v4"
- name: HACS Validation
uses: "hacs/action@main"
with:
category: "integration"

0 comments on commit 43a7695

Please sign in to comment.