Skip to content

Commit 8c48e17

Browse files
committed
Add beta-hacs action workflow
1 parent c46e22c commit 8c48e17

File tree

3 files changed

+25
-2
lines changed

3 files changed

+25
-2
lines changed

.github/workflows/hacs.yml

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: HACS Action
2+
3+
on:
4+
push:
5+
pull_request:
6+
schedule:
7+
- cron: "0 0 * * *"
8+
9+
jobs:
10+
hacs:
11+
name: HACS Action
12+
runs-on: "ubuntu-latest"
13+
steps:
14+
- name: Checkout Code
15+
uses: "actions/checkout@v2"
16+
17+
- name: HACS Action
18+
uses: "hacs/action@main"
19+
with:
20+
category: "integration"
21+
22+
- name: Hassfest Validation
23+
uses: "home-assistant/actions/hassfest@master"

.github/workflows/pull.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
- uses: "actions/checkout@v2"
1212

1313
- name: HACS validation
14-
uses: "hacs/integration/action@master"
14+
uses: "hacs/integration/action@main"
1515
with:
1616
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
1717
CATEGORY: "integration"

.github/workflows/push.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ name: Push actions
44
on:
55
push:
66
branches:
7-
- master
7+
- main
88
- dev
99

1010
jobs:

0 commit comments

Comments
 (0)