Skip to content

Commit 778ade8

Browse files
committed
Add hacs validate action
1 parent b5d7fe9 commit 778ade8

File tree

2 files changed

+25
-0
lines changed

2 files changed

+25
-0
lines changed

.github/dependabot.yml

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# Set update schedule for GitHub Actions
2+
version: 2
3+
updates:
4+
- package-ecosystem: "github-actions"
5+
directory: "/"
6+
schedule:
7+
interval: "weekly"
8+

.github/workflows/validate.yml

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

0 commit comments

Comments
 (0)