Bump version to 2.1.9 in manifest.json #4
This file contains hidden or 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: Validate Local Polling Integration (dev-local) | |
| on: | |
| push: | |
| branches: | |
| - dev-local | |
| pull_request: | |
| branches: | |
| - dev-local | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| jobs: | |
| validate-hacs: | |
| name: HACS Validation | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: HACS validation | |
| uses: hacs/action@main | |
| with: | |
| category: integration | |
| validate-hassfest: | |
| name: Hassfest Validation | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Rename directory to match domain | |
| run: | | |
| mv custom_components/rinnaicontrolr-ha custom_components/rinnai | |
| - name: Run Hassfest | |
| uses: home-assistant/actions/hassfest@master |