Skip to content

Commit

Permalink
Adjust actions
Browse files Browse the repository at this point in the history
  • Loading branch information
ludeeus committed Feb 11, 2023
1 parent 14cded4 commit 88a082e
Show file tree
Hide file tree
Showing 4 changed files with 38 additions and 85 deletions.
21 changes: 0 additions & 21 deletions .github/workflows/cron.yml

This file was deleted.

31 changes: 0 additions & 31 deletions .github/workflows/pull.yml

This file was deleted.

33 changes: 0 additions & 33 deletions .github/workflows/push.yml

This file was deleted.

38 changes: 38 additions & 0 deletions .github/workflows/validate.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
name: "Validate"

on:
workflow_dispatch:
schedule:
- cron: '0 0 * * *'
push:
branches:
- "main"
pull_request:
branches:
- "main"

jobs:
hassfest:
name: "HACS Validation"
runs-on: "ubuntu-latest"
steps:
- name: "Checkout the repository"
uses: "actions/checkout@v3"

- name: "Run hassfest validation"
uses: "home-assistant/actions/hassfest@master"

hacs:
name: "HACS Validation"
runs-on: "ubuntu-latest"
steps:
- name: "Checkout the repository"
uses: "actions/checkout@v3"

- name: "Run HACS validation"
uses: "hacs/action@main"
with:
category: "integration"
ignore: "brands"


0 comments on commit 88a082e

Please sign in to comment.