Merge pull request #131 from darcato/daikin-fwt-gt-broadlink #38
This file contains 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: "Reformat" | |
on: | |
push: | |
branches: [ "master" ] | |
workflow_dispatch: | |
jobs: | |
reformat: | |
name: Reformat | |
runs-on: ubuntu-latest | |
permissions: | |
actions: read | |
contents: write | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Reformat Python files | |
uses: psf/black@stable | |
with: | |
options: "" | |
- name: Reformat JSON and MD files | |
uses: creyD/[email protected] | |
with: | |
prettier_options: --write codes/*/*.json docs/!(*_CODES).md | |
commit_message: ":art: Reformated Python, JSON and MD files" | |
commit_description: "" | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.X" | |
- name: Catalog device code files | |
run: | | |
python3 test_device_data.py --docs codes/*/*.json | |
- name: Markdown autodocs | |
uses: dineshsonachalam/[email protected] | |
with: | |
output_file_paths: '[./docs/CLIMATE_CODES.md, ./docs/FAN_CODES.md, ./docs/MEDIA_PLAYER_CODES.md]' | |
commit_message: Update docs - include valid device files |