Skip to content

Commit

Permalink
Merge branch 'master' into lunar-phase-card
Browse files Browse the repository at this point in the history
  • Loading branch information
ngocjohn authored Nov 23, 2024
2 parents 83f0b09 + 55676b0 commit c6834d8
Show file tree
Hide file tree
Showing 11 changed files with 103 additions and 14 deletions.
28 changes: 24 additions & 4 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,12 @@ jobs:
removal: ${{ steps.removal.outputs.removal }}
steps:
- name: Check out repository
uses: actions/[email protected]
uses: actions/[email protected]

- name: Set up Python
uses: actions/[email protected]
with:
python-version-file: ".python-version"

- name: Clone origin
run: git clone --depth 1 https://github.com/hacs/default /tmp/repositories/default
Expand All @@ -60,7 +65,14 @@ jobs:
if: needs.preflight.outputs.removal != 'true'
steps:
- name: Check out repository
uses: actions/[email protected]
uses: actions/[email protected]

- name: Set up Python
uses: actions/[email protected]
with:
python-version-file: ".python-version"
cache: "pip"
cache-dependency-path: "requirements.txt"

- name: Install dependencies if needed
run: scripts/setup
Expand All @@ -76,7 +88,15 @@ jobs:
name: Editable PR
steps:
- name: Check out repository
uses: actions/[email protected]
uses: actions/[email protected]

- name: Set up Python
uses: actions/[email protected]
with:
python-version-file: ".python-version"
cache: "pip"
cache-dependency-path: "requirements.txt"


- name: Install dependencies if needed
run: scripts/setup
Expand All @@ -91,7 +111,7 @@ jobs:
if: needs.preflight.outputs.category == 'integration' && needs.preflight.outputs.removal != 'true'
steps:
- name: Check out repository
uses: actions/checkout@v4.1.7
uses: actions/checkout@v4.2.1

- name: Clone new addition
run: |
Expand Down
11 changes: 8 additions & 3 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v4.1.7
uses: actions/checkout@v4.2.1

- name: Validate
run: jq --raw-output . appdaemon blacklist critical integration netdaemon plugin python_script removed template theme
Expand All @@ -27,7 +27,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v4.1.7
uses: actions/checkout@v4.2.1

- name: Critical
uses: cardinalby/[email protected]
Expand All @@ -52,7 +52,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/[email protected]
uses: actions/[email protected]

- name: Set up Python
uses: actions/[email protected]
with:
python-version-file: ".python-version"

- name: Check lists
run: python3 scripts/is_sorted.py
2 changes: 1 addition & 1 deletion .github/workflows/upload-critical.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
name: Upload
steps:
- name: Checkout the repository
uses: actions/checkout@v4.1.7
uses: actions/checkout@v4.2.1

- name: Validate with JSON schema
uses: cardinalby/[email protected]
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/upload-removed.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
name: Upload
steps:
- name: Checkout the repository
uses: actions/checkout@v4.1.7
uses: actions/checkout@v4.2.1

- name: Validate with JSON schema
uses: cardinalby/[email protected]
Expand Down
1 change: 1 addition & 0 deletions .python-version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
3.10
1 change: 1 addition & 0 deletions appdaemon
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@
"Petro31/ad_toggle_light",
"Petro31/ad_who_used_the_door",
"Petro31/IlluminateDoor",
"Pythm/ad-ClimateCommander",
"Pythm/ad-Lightwand",
"roopesh/ad-qolsys",
"simonhq/accu_allergies",
Expand Down
2 changes: 2 additions & 0 deletions blacklist
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@
"cgarwood/homeassistant-zwave_mqtt",
"chaptergy/noctis-grey",
"clayauld/lovelace-darksky-card",
"codyc1515/ha-contact-energy",
"custom-cards/boilerplate-card",
"custom-cards/button-entity-row",
"custom-cards/camera-card",
Expand Down Expand Up @@ -117,6 +118,7 @@
"cyberjunky/home-assistant-plugwise",
"Cyr-ius/hass-cozytouch",
"Cyr-ius/hass-hue-service-advanced",
"daenny/climate_group",
"DavidFW1960/bom_forecast",
"DavidMStraub/homeassistant-homeconnect",
"DCSBL/ha-homewizard-energy",
Expand Down
Loading

0 comments on commit c6834d8

Please sign in to comment.