mirror of
https://github.com/jpawlowski/hass.tibber_prices.git
synced 2026-03-30 13:23:41 +00:00
Bumps [home-assistant/actions](https://github.com/home-assistant/actions) from 01a62fa0b7ab4a0ac894184f48a82477812dca4b to 6778c32c6da322382854bd824e30fd4a4f3c20e5.
- [Release notes](https://github.com/home-assistant/actions/releases)
- [Commits](01a62fa0b7...6778c32c6d)
---
updated-dependencies:
- dependency-name: home-assistant/actions
dependency-version: 6778c32c6da322382854bd824e30fd4a4f3c20e5
dependency-type: direct:production
...
Signed-off-by: dependabot[bot] <support@github.com>
40 lines
1.1 KiB
YAML
40 lines
1.1 KiB
YAML
name: Validate
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
schedule:
|
|
- cron: "0 0 * * *"
|
|
push:
|
|
branches:
|
|
- main
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
|
|
permissions: {}
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
hassfest: # https://developers.home-assistant.io/blog/2020/04/16/hassfest
|
|
name: Hassfest validation
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout the repository
|
|
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
|
|
|
|
- name: Run hassfest validation
|
|
uses: home-assistant/actions/hassfest@6778c32c6da322382854bd824e30fd4a4f3c20e5 # master
|
|
|
|
hacs: # https://github.com/hacs/action
|
|
name: HACS validation
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Run HACS validation
|
|
uses: hacs/action@d556e736723344f83838d08488c983a15381059a # 22.5.0
|
|
with:
|
|
category: integration
|
|
# Remove this 'ignore' key when you have added brand images for your custom integration to https://github.com/home-assistant/brands
|
|
ignore: brands
|