Notifications of Frigate detections #1137
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: ESPHome | |
## This workflow exists to keep branch protection happy in the event of no changes being made to the esphome directory. | |
# yamllint disable-line rule:truthy | |
on: | |
pull_request: | |
paths-ignore: | |
- 'esphome/**' | |
- '.github/workflows/esphome**' | |
push: | |
branches: [main] | |
paths-ignore: | |
- 'esphome/**' | |
- '.github/workflows/esphome**' | |
schedule: | |
- cron: 0 12 * * * | |
jobs: | |
# This is used by branch protections | |
final: | |
name: Final ESPHome check | |
runs-on: ubuntu-latest | |
steps: | |
- run: 'echo "No build required"' |