Skip to content

Commit

Permalink
Split HA and HACS actions
Browse files Browse the repository at this point in the history
  • Loading branch information
palfrey committed Apr 1, 2024
1 parent 89dfeca commit 17e6fd3
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 8 deletions.
12 changes: 4 additions & 8 deletions .github/workflows/ha.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
name: HACS/HA
name: HA

on:
push:
Expand All @@ -10,13 +10,9 @@ on:
- cron: 0 0 * * *

jobs:
hacs:
name: HACS and Home assistant
ha:
name: Hassfest
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: home-assistant/actions/hassfest@master
- name: HACS Action
uses: hacs/action@main
with:
category: integration
- uses: home-assistant/actions/hassfest@master
21 changes: 21 additions & 0 deletions .github/workflows/hacs.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
---
name: HACS

on:
push:
branches:
- main
pull_request:
schedule:
- cron: 0 0 * * *

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

0 comments on commit 17e6fd3

Please sign in to comment.