mirror of
https://github.com/basnijholt/adaptive-lighting.git
synced 2026-09-12 14:54:04 +02:00
* Cleanup after add_to_platform_abort is called, fixes #658 * Add note * try-catch because of priv * Catch all exceptions * Bump to 1.17.3 in manifest.json * assert that hass is not None * Rename _light_event_action -> _light_state_event_action * update .github/update-strings.py * Update README.md, strings.json, and services.yaml * update name * Fixes * Update README.md, strings.json, and services.yaml * Add name * Do not add name --------- Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
62 lines
2 KiB
YAML
62 lines
2 KiB
YAML
name: Update README.md, strings.json, and services.yaml
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
paths:
|
|
- "README.md"
|
|
- "custom_components/adaptive_lighting/const.py"
|
|
- "github/workflows/update-readme.yml"
|
|
pull_request:
|
|
|
|
jobs:
|
|
update_readme:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Check out code from GitHub
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Install Home Assistant
|
|
uses: ./.github/workflows/install_dependencies
|
|
with:
|
|
python-version: "3.11"
|
|
|
|
- name: Install markdown-code-runner and README code dependencies
|
|
run: |
|
|
pip install markdown-code-runner==1.0.0 pandas tabulate
|
|
|
|
- name: Link custom_components/adaptive_lighting
|
|
run: |
|
|
cd core/homeassistant/components
|
|
ln -fs ../../../custom_components/adaptive_lighting adaptive_lighting
|
|
|
|
- name: Run markdown-code-runner
|
|
run: markdown-code-runner --debug README.md
|
|
|
|
- name: Run update services.yaml
|
|
run: python .github/update-services.py
|
|
|
|
- name: Run update strings.json
|
|
run: python .github/update-strings.py
|
|
|
|
- name: Commit updated README.md, strings.json, and services.yaml
|
|
id: commit
|
|
run: |
|
|
git add -u .
|
|
git config --local user.email "github-actions[bot]@users.noreply.github.com"
|
|
git config --local user.name "github-actions[bot]"
|
|
if git diff --quiet && git diff --staged --quiet; then
|
|
echo "No changes in README.md, strings.json, and services.yaml, skipping commit."
|
|
echo "commit_status=skipped" >> $GITHUB_ENV
|
|
else
|
|
git commit -m "Update README.md, strings.json, and services.yaml"
|
|
echo "commit_status=committed" >> $GITHUB_ENV
|
|
fi
|
|
|
|
- name: Push changes
|
|
if: env.commit_status == 'committed'
|
|
uses: ad-m/github-push-action@master
|
|
with:
|
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
|
branch: ${{ github.head_ref }}
|