chore(deps-dev): update homeassistant requirement from >=2023.12.0 to >=2026.4.4 #67
Workflow file for this run
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: Release | |
| on: | |
| ## Trigger on pushes to main and tags with vX.X.X, and allow manual dispatch, we will publish images, otherwise just build. | |
| push: | |
| branches: | |
| - 'main' | |
| tags: | |
| - 'v*.*.*' | |
| - 'V*.*.*' | |
| - '*.*.*' | |
| workflow_dispatch: | |
| pull_request: | |
| permissions: | |
| contents: write | |
| jobs: | |
| changelog: | |
| permissions: | |
| contents: write | |
| pull-requests: write | |
| name: Changelog | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Update Changelog | |
| uses: release-drafter/release-drafter@v7 | |
| with: | |
| config-name: release.yml | |
| disable-autolabeler: true | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |