mirror of
https://github.com/esphome/esphome.git
synced 2026-06-24 12:17:23 +00:00
86 lines
3.5 KiB
YAML
86 lines
3.5 KiB
YAML
---
|
|
name: Synchronise Device Classes from Home Assistant
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
schedule:
|
|
- cron: "45 6 * * *"
|
|
|
|
# Repo writes (branch push, PR open) happen via the App token minted below,
|
|
# so the workflow's GITHUB_TOKEN does not need any write scopes.
|
|
permissions:
|
|
contents: read # actions/checkout for this repo and home-assistant/core
|
|
|
|
jobs:
|
|
sync:
|
|
name: Sync Device Classes
|
|
runs-on: ubuntu-latest
|
|
if: github.repository == 'esphome/esphome'
|
|
steps:
|
|
- name: Generate a token
|
|
id: generate-token
|
|
uses: actions/create-github-app-token@bcd2ba49218906704ab6c1aa796996da409d3eb1 # v3.2.0
|
|
with:
|
|
client-id: ${{ vars.ESPHOME_GITHUB_APP_CLIENT_ID }}
|
|
private-key: ${{ secrets.ESPHOME_GITHUB_APP_PRIVATE_KEY }}
|
|
# Scope the minted App token to the minimum needed by peter-evans/create-pull-request.
|
|
permission-contents: write # git.createCommit + refs.create/update to push the sync/device-classes branch
|
|
permission-pull-requests: write # pulls.create / pulls.update to open or refresh the sync PR
|
|
|
|
- name: Checkout
|
|
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
|
|
|
- name: Create sync branch
|
|
# Switch off dev before pre-commit runs so the
|
|
# no-commit-to-branch hook passes (it blocks dev/release/beta).
|
|
run: git checkout -B sync/device-classes
|
|
|
|
- name: Checkout Home Assistant
|
|
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
|
with:
|
|
repository: home-assistant/core
|
|
path: lib/home-assistant
|
|
|
|
- name: Setup Python
|
|
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
|
|
with:
|
|
python-version: "3.14"
|
|
|
|
- name: Install Home Assistant
|
|
run: |
|
|
python -m pip install --upgrade pip
|
|
pip install -e lib/home-assistant
|
|
# Project requirements are needed so pylint can resolve runtime
|
|
# imports (e.g. smpclient in esphome/components/nrf52/ota.py).
|
|
pip install -r requirements.txt -r requirements_test.txt pre-commit
|
|
|
|
- name: Sync
|
|
run: |
|
|
python ./script/sync-device_class.py
|
|
|
|
- name: Apply pre-commit auto-fixes
|
|
# First pass: let formatters (ruff, end-of-file-fixer, etc.) modify
|
|
# files. pre-commit exits non-zero whenever a hook touches anything,
|
|
# which would otherwise abort the workflow before the auto-fixes
|
|
# can flow into the sync PR.
|
|
run: python script/run-in-env.py pre-commit run --all-files || true
|
|
|
|
- name: Verify pre-commit clean
|
|
# Second pass: re-run all hooks against the now-fixed tree.
|
|
# Auto-fixers exit 0 (nothing to change); any remaining failure
|
|
# from a check-only hook (pylint / flake8 / yamllint / ci-custom)
|
|
# is a real issue and fails the workflow loudly.
|
|
run: python script/run-in-env.py pre-commit run --all-files
|
|
|
|
- name: Commit changes
|
|
uses: peter-evans/create-pull-request@5f6978faf089d4d20b00c7766989d076bb2fc7f1 # v8.1.1
|
|
with:
|
|
commit-message: "Synchronise Device Classes from Home Assistant"
|
|
committer: esphomebot <esphome@openhomefoundation.org>
|
|
author: esphomebot <esphome@openhomefoundation.org>
|
|
branch: sync/device-classes
|
|
delete-branch: true
|
|
title: "Synchronise Device Classes from Home Assistant"
|
|
body-path: .github/PULL_REQUEST_TEMPLATE.md
|
|
token: ${{ steps.generate-token.outputs.token }}
|