Update ghcr.io/hassio-addons/base/armv7 Docker tag to v15.0.8 - autoclosed #260
Workflow file for this run
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: CI | |
# yamllint disable-line rule:truthy | |
on: | |
push: | |
pull_request: | |
types: | |
- opened | |
- reopened | |
- synchronize | |
workflow_dispatch: | |
jobs: | |
find: | |
name: Find add-ons | |
runs-on: ubuntu-latest | |
outputs: | |
addons: ${{ steps.addons.outputs.addons_list }} | |
steps: | |
- name: Check out the codebase | |
uses: actions/checkout@v4 | |
- name: Find add-on directories | |
id: addons | |
uses: home-assistant/actions/helpers/find-addons@master | |
lint: | |
name: Lint add-on ${{ matrix.path }} | |
needs: find | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
path: ${{ fromJson(needs.find.outputs.addons) }} | |
steps: | |
- name: Check out the codebase | |
uses: actions/checkout@v4 | |
- name: Run Home Assistant Add-on Lint | |
uses: frenck/action-addon-linter@v2 | |
with: | |
path: "./${{ matrix.path }}" | |
community: false |