mirror of
https://github.com/basnijholt/adaptive-lighting.git
synced 2026-09-15 16:24:04 +02:00
* Automatically sync more data * Automatically generate apply table * Generate manual control * Add manual control docs * Update README.md * Move docs functions to separate file * Update code * simple * no path * link paths * Fix link * missed * cd core * Update README.md * Allow alternative docs * update readme * More special * Fx * Update README.md * Remove common descriptions * Update README.md * Update README.md * Rephrase * Update README.md --------- Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
56 lines
1.7 KiB
YAML
56 lines
1.7 KiB
YAML
name: Update README.md
|
|
|
|
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.10"
|
|
|
|
- name: Install markdown-code-runner and README code dependencies
|
|
run: |
|
|
pip install markdown-code-runner 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: Commit updated README.md
|
|
id: commit
|
|
run: |
|
|
git add README.md
|
|
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, skipping commit."
|
|
echo "commit_status=skipped" >> $GITHUB_ENV
|
|
else
|
|
git commit -m "Update README.md"
|
|
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 }}
|