From c11ac61ebe86b51af862d54bd2ecc12c4c34a797 Mon Sep 17 00:00:00 2001 From: yalh76 Date: Wed, 15 Jun 2022 20:51:54 +0200 Subject: [PATCH 1/7] Reduce PRs --- .github/workflows/updater.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/updater.yml b/.github/workflows/updater.yml index fb72ba0..5084590 100644 --- a/.github/workflows/updater.yml +++ b/.github/workflows/updater.yml @@ -8,7 +8,7 @@ on: workflow_dispatch: # Run it every day at 6:00 UTC schedule: - - cron: '0 6 * * *' + - cron: '0 6 */7 * *' jobs: updater: runs-on: ubuntu-latest From a745d9029ce65285281f2cbad6479722322e888d Mon Sep 17 00:00:00 2001 From: ewilly Date: Mon, 28 Nov 2022 10:17:07 +0000 Subject: [PATCH 2/7] Update package_linter.yml --- .github/workflows/package_linter.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/package_linter.yml b/.github/workflows/package_linter.yml index 6126a95..ea9c96a 100644 --- a/.github/workflows/package_linter.yml +++ b/.github/workflows/package_linter.yml @@ -12,7 +12,7 @@ jobs: test: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: 'Clone YunoHost apps package linter' run: | From 896f05b248dc22c79c8780f0f1241036f4412975 Mon Sep 17 00:00:00 2001 From: ewilly Date: Mon, 28 Nov 2022 10:20:21 +0000 Subject: [PATCH 3/7] Update package_linter.yml --- .github/workflows/package_linter.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/package_linter.yml b/.github/workflows/package_linter.yml index ea9c96a..bb3c383 100644 --- a/.github/workflows/package_linter.yml +++ b/.github/workflows/package_linter.yml @@ -1,6 +1,8 @@ name: YunoHost apps package linter on: + # Allow to manually trigger the workflow + workflow_dispatch: push: branches: - main From e3f72cc78991e9824dc9f2a8f068a7dafb505b92 Mon Sep 17 00:00:00 2001 From: ewilly Date: Wed, 14 Dec 2022 20:30:52 +0000 Subject: [PATCH 4/7] Update package_linter.yml --- .github/workflows/package_linter.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/workflows/package_linter.yml b/.github/workflows/package_linter.yml index bb3c383..73e99db 100644 --- a/.github/workflows/package_linter.yml +++ b/.github/workflows/package_linter.yml @@ -15,6 +15,16 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 + + - name: Set up Python + uses: actions/setup-python@v4 + with: + python-version: '3.9' + + - name: Install dependencies + run: | + python -m pip install --upgrade pip + pip install toml - name: 'Clone YunoHost apps package linter' run: | From d8b76e3aa5e13859a17b2b18ee831c53f620f4f8 Mon Sep 17 00:00:00 2001 From: ewilly Date: Mon, 19 Dec 2022 12:16:25 +0100 Subject: [PATCH 5/7] Remove ynh_exec_fully_quiet --- scripts/install | 2 +- scripts/upgrade | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/install b/scripts/install index b6d03b6..5542350 100644 --- a/scripts/install +++ b/scripts/install @@ -116,7 +116,7 @@ chown -R $app: "$data_path" # installation in a virtual environment ynh_script_progression --message="Installing Home Assistant in a virtual environment..." -ynh_exec_fully_quiet myynh_install_homeassistant +myynh_install_homeassistant #================================================= # NGINX CONFIGURATION diff --git a/scripts/upgrade b/scripts/upgrade index 326e1e7..83c9c45 100644 --- a/scripts/upgrade +++ b/scripts/upgrade @@ -77,8 +77,8 @@ then ynh_script_progression --message="Upgrading source files..." myynh_install_python --python="$py_required_version" - ynh_exec_fully_quiet myynh_upgrade_venv_directory - ynh_exec_fully_quiet myynh_install_homeassistant + myynh_upgrade_venv_directory + myynh_install_homeassistant fi #================================================= From 6187b25a88c56d45a05be87a1a38f5fe54e673d9 Mon Sep 17 00:00:00 2001 From: ewilly Date: Wed, 21 Dec 2022 22:01:35 +0100 Subject: [PATCH 6/7] Disable buster support --- manifest.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manifest.json b/manifest.json index 17a440e..1ca6b33 100644 --- a/manifest.json +++ b/manifest.json @@ -21,7 +21,7 @@ "email": "ewilly@ewilly.fr" }, "requirements": { - "yunohost": ">= 4.3.0" + "yunohost": ">= 11.0.0" }, "multi_instance": false, "services": [ From 4f1fa4170e7eb1c52c7a804df882cce159bf800d Mon Sep 17 00:00:00 2001 From: ewilly Date: Thu, 22 Dec 2022 10:02:08 +0100 Subject: [PATCH 7/7] Fix configuration time_zone --- conf/homeassistant_conf_files/configuration.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conf/homeassistant_conf_files/configuration.yaml b/conf/homeassistant_conf_files/configuration.yaml index 977927f..6cc3b5a 100644 --- a/conf/homeassistant_conf_files/configuration.yaml +++ b/conf/homeassistant_conf_files/configuration.yaml @@ -6,7 +6,7 @@ homeassistant: unit_system: __UNIT_SYSTEM__ currency: __CURRENCY__ country: __COUNTRY__ - time_zone: __TIME_ZONE__ + time_zone: "__TIME_ZONE__" external_url: "https://__DOMAIN__" auth_providers: - type: command_line