From fabbc216548e246c1acb45b4263e7e51c4b1766a Mon Sep 17 00:00:00 2001 From: github-actions <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 22 Mar 2023 13:43:01 +0000 Subject: [PATCH 01/14] GitHub bot : changelog --- nextcloud/CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/nextcloud/CHANGELOG.md b/nextcloud/CHANGELOG.md index ec15af077..8cdeff7d8 100644 --- a/nextcloud/CHANGELOG.md +++ b/nextcloud/CHANGELOG.md @@ -1,3 +1,5 @@ +### 25.0.4-11 (22-03-2023) +- Minor bugs fixed - Implemented safety check that reinstalls nextcloud if issue detected https://github.com/alexbelgium/hassio-addons/issues/764 - Implemented healthcheck - Redirect crond errors to addon logs From 9c284bd0622cd8d5bde5fe2587c421161aac74a4 Mon Sep 17 00:00:00 2001 From: github-actions <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 22 Mar 2023 17:04:36 +0000 Subject: [PATCH 02/14] GitHub bot : README updated --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 370d33223..1f981d5da 100644 --- a/README.md +++ b/README.md @@ -56,8 +56,8 @@ If you want to do add the repository manually, please follow the procedure highl - armv7: 4% ### Downloads evolution - - + + ### Stars evolution From e363f62ee9229ec44c5fd2ec6f68e0339935a4e8 Mon Sep 17 00:00:00 2001 From: github-actions <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 22 Mar 2023 19:29:47 +0000 Subject: [PATCH 03/14] Github bot : issues linked to readme --- nextcloud/README.md | 1 + plex/README.md | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/nextcloud/README.md b/nextcloud/README.md index e4912bd6b..87c9cb827 100644 --- a/nextcloud/README.md +++ b/nextcloud/README.md @@ -1,4 +1,5 @@ ## ⚠ Open Request : [✨ [REQUEST] Nextcloud - Enable antivirus (opened 2023-01-25)](https://github.com/alexbelgium/hassio-addons/issues/669) by [@amaciuc](https://github.com/amaciuc) +## ⚠ Open Issue : [🐛 [Nextcloud] Addon won't run with error about Composer autoloader not found or app directory not found (opened 2023-03-20)](https://github.com/alexbelgium/hassio-addons/issues/764) by [@Adsero110](https://github.com/Adsero110) # Home assistant add-on: Nextcloud diff --git a/plex/README.md b/plex/README.md index 49802ca93..ec611f160 100644 --- a/plex/README.md +++ b/plex/README.md @@ -1,7 +1,7 @@ ## ⚠ Open Request : [✨ [REQUEST] PlexTraktSync (opened 2022-12-16)](https://github.com/alexbelgium/hassio-addons/issues/604) by [@cronner](https://github.com/cronner) - ## ⚠ Open Request : [✨ [REQUEST] Plex year wrapped (like spotify) (opened 2022-12-25)](https://github.com/alexbelgium/hassio-addons/issues/613) by [@bruvv](https://github.com/bruvv) + # Home assistant add-on: plex [![Donate][donation-badge]](https://www.buymeacoffee.com/alexbelgium) From 1db731da3ef8a95c8594e9ca997d30a1fec38bb9 Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Wed, 22 Mar 2023 21:51:02 +0100 Subject: [PATCH 04/14] Update 02-init_steps.sh --- nextcloud/rootfs/etc/cont-init.d/02-init_steps.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nextcloud/rootfs/etc/cont-init.d/02-init_steps.sh b/nextcloud/rootfs/etc/cont-init.d/02-init_steps.sh index c5d4a50f5..75134da7f 100755 --- a/nextcloud/rootfs/etc/cont-init.d/02-init_steps.sh +++ b/nextcloud/rootfs/etc/cont-init.d/02-init_steps.sh @@ -22,8 +22,8 @@ done echo "Checking installation" if [[ "$(occ --version)" == *"Composer autoloader not found"* ]]; then bashio::log.fatal "Issue with installation detected, reinstallation will proceed. Your files are copied in /share/nextcloud_backup_$(date +%F)" - mv /data/config/www/nextcloud /share/nextcloud_backup_$(date +%F) - bashio::addon.restart + rm /data/config/www/nextcloud/index.php + /./etc/s6-overlay/s6-rc.d/init-nextcloud-config/run fi # Add new log info to config.php From b86444d85615b965b7f928b4a9830709118c9b6f Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Thu, 23 Mar 2023 10:09:38 +0100 Subject: [PATCH 05/14] Update helper_stats_graphs.yaml --- .github/workflows/helper_stats_graphs.yaml | 22 +++++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) diff --git a/.github/workflows/helper_stats_graphs.yaml b/.github/workflows/helper_stats_graphs.yaml index ee49f4f03..85e74f6e1 100644 --- a/.github/workflows/helper_stats_graphs.yaml +++ b/.github/workflows/helper_stats_graphs.yaml @@ -2,6 +2,8 @@ --- name: Generate weekly stats graphs on: + schedule: + - cron: 0 18 * * * workflow_run: workflows: ["weekly_stats.yaml"] types: @@ -9,8 +11,26 @@ on: workflow_dispatch: jobs: + stars_graphs: + runs-on: ubuntu-latest + steps: + - name: Checkout Repo + uses: actions/checkout@v3 + - name: Update stars + run: | + echo "Starting run" + # Get stars + curl -o .github/starstmp.svg https://contrib.rocks/image?repo=alexbelgium/hassio-addons + FILESIZE=$(stat -c%s ".github/starstmp.svg") + if (( FILESIZE > MAXSIZE)); then mv .github/starstmp.svg .github/stars.svg; fi + - name: Commit if needed + uses: EndBug/add-and-commit@v9 + with: + message: "GitHub bot : graphs updated" + default_author: github_actions + stats_graphs: - runs-on: ubuntu-20.04 + runs-on: ubuntu-latest steps: - name: Checkout Repo uses: actions/checkout@v3 From f039452b5ac5b3a82b1ba5f9abb6fa41f879af2d Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Thu, 23 Mar 2023 10:09:47 +0100 Subject: [PATCH 06/14] Update helper_stats_graphs.yaml --- .github/workflows/helper_stats_graphs.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/helper_stats_graphs.yaml b/.github/workflows/helper_stats_graphs.yaml index 85e74f6e1..c1a927e67 100644 --- a/.github/workflows/helper_stats_graphs.yaml +++ b/.github/workflows/helper_stats_graphs.yaml @@ -1,6 +1,6 @@ # yamllint disable rule:line-length --- -name: Generate weekly stats graphs +name: Generate weekly graphs on: schedule: - cron: 0 18 * * * From 2d2cd1933a355922d88fa7b231ef4217829e5c5d Mon Sep 17 00:00:00 2001 From: github-actions <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 23 Mar 2023 09:10:17 +0000 Subject: [PATCH 07/14] GitHub bot : graphs updated --- .github/stars.svg | 303 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 303 insertions(+) create mode 100644 .github/stars.svg diff --git a/.github/stars.svg b/.github/stars.svg new file mode 100644 index 000000000..a2b733bdf --- /dev/null +++ b/.github/stars.svg @@ -0,0 +1,303 @@ + + + +\nalexbelgium + + + + + + + +\npetersendev + + + + + + + +\nbruvv + + + + + + + +\nbaldarn + + + + + + + +\nelmerenges + + + + + + + +\nelahd + + + + + + + +\nwoutercoppens + + + + + + + +\nDeckoz2302 + + + + + + + +\nNODeeJay + + + + + + + +\ndanbruno + + + + + + + +\nmarciogranzotto + + + + + + + +\nfkhofmann + + + + + + + +\ntyjtyj + + + + + + + +\nAlecRust + + + + + + + +\nBerghsJelmer + + + + + + + +\nEalenn + + + + + + + +\nSilvioMessi + + + + + + + +\nproffalken + + + + + + + +\nankushg + + + + + + + +\nChronoRadion + + + + + + + +\nDDanii + + + + + + + +\nEpicLPer + + + + + + + +\ngieljnssns + + + + + + + +\nImgBotApp + + + + + + + +\njeffothy + + + + + + + +\nMaxWinterstein + + + + + + + +\nnathang21 + + + + + + + +\nSpand0x + + + + + + + +\ntmcarr + + + + + + + +\nacervicius + + + + + + + +\ndavoloko + + + + + + + +\nmonkey-debugger + + + + + + + +\nmxwi + + + + + + + +\nnovisys + + + + + + + +\npullaf + + + + + + + +\ntdn131 + + + + + + + +\nwesleygas + + + + + + + + From 1755bf956386ed287d71aa0ccdf04d247f8ddd1b Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Thu, 23 Mar 2023 10:12:13 +0100 Subject: [PATCH 08/14] Update 02-init_steps.sh --- nextcloud/rootfs/etc/cont-init.d/02-init_steps.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/nextcloud/rootfs/etc/cont-init.d/02-init_steps.sh b/nextcloud/rootfs/etc/cont-init.d/02-init_steps.sh index 75134da7f..b39b1b304 100755 --- a/nextcloud/rootfs/etc/cont-init.d/02-init_steps.sh +++ b/nextcloud/rootfs/etc/cont-init.d/02-init_steps.sh @@ -21,7 +21,8 @@ done # Check if issues with installation echo "Checking installation" if [[ "$(occ --version)" == *"Composer autoloader not found"* ]]; then - bashio::log.fatal "Issue with installation detected, reinstallation will proceed. Your files are copied in /share/nextcloud_backup_$(date +%F)" + bashio::log.fatal "Issue with installation detected, reinstallation will proceed. Your files are copied in /share/nextcloud_$(date +%F)" + cp /data/config/www/nextcloud /share/nextcloud_"$(date +%F)" rm /data/config/www/nextcloud/index.php /./etc/s6-overlay/s6-rc.d/init-nextcloud-config/run fi From 21acedae4146f1cc2f1d3818c414164d369a0877 Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Thu, 23 Mar 2023 10:23:59 +0100 Subject: [PATCH 09/14] Update helper_stats_graphs.yaml --- .github/workflows/helper_stats_graphs.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/helper_stats_graphs.yaml b/.github/workflows/helper_stats_graphs.yaml index c1a927e67..27c270d4e 100644 --- a/.github/workflows/helper_stats_graphs.yaml +++ b/.github/workflows/helper_stats_graphs.yaml @@ -20,9 +20,9 @@ jobs: run: | echo "Starting run" # Get stars - curl -o .github/starstmp.svg https://contrib.rocks/image?repo=alexbelgium/hassio-addons - FILESIZE=$(stat -c%s ".github/starstmp.svg") - if (( FILESIZE > MAXSIZE)); then mv .github/starstmp.svg .github/stars.svg; fi + wget -S -O .github/stars.svg https://contrib.rocks/image?repo=alexbelgium/hassio-addons + # Get stars2 + wget -S -O .github/stars2.svg https://contrib.rocks/image?repo=alexbelgium/hassio-addons - name: Commit if needed uses: EndBug/add-and-commit@v9 with: From 3d7eed642b0518a167ba05284ec94033f69cefb3 Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Thu, 23 Mar 2023 10:25:35 +0100 Subject: [PATCH 10/14] Update helper_stats_graphs.yaml --- .github/workflows/helper_stats_graphs.yaml | 25 ++++++---------------- 1 file changed, 7 insertions(+), 18 deletions(-) diff --git a/.github/workflows/helper_stats_graphs.yaml b/.github/workflows/helper_stats_graphs.yaml index 27c270d4e..07b2ed7c0 100644 --- a/.github/workflows/helper_stats_graphs.yaml +++ b/.github/workflows/helper_stats_graphs.yaml @@ -11,24 +11,6 @@ on: workflow_dispatch: jobs: - stars_graphs: - runs-on: ubuntu-latest - steps: - - name: Checkout Repo - uses: actions/checkout@v3 - - name: Update stars - run: | - echo "Starting run" - # Get stars - wget -S -O .github/stars.svg https://contrib.rocks/image?repo=alexbelgium/hassio-addons - # Get stars2 - wget -S -O .github/stars2.svg https://contrib.rocks/image?repo=alexbelgium/hassio-addons - - name: Commit if needed - uses: EndBug/add-and-commit@v9 - with: - message: "GitHub bot : graphs updated" - default_author: github_actions - stats_graphs: runs-on: ubuntu-latest steps: @@ -239,6 +221,13 @@ jobs: plot 'Stats3' using 1:2 lt rgb 'red' w l title 'Total addons' smooth bezier EOFMarker rm Stats3 + - name: Update stars + run: | + echo "Starting run" + # Get stars + wget -S -O .github/stars.svg https://contrib.rocks/image?repo=alexbelgium/hassio-addons + # Get stars2 + wget -S -O .github/stars2.svg https://contrib.rocks/image?repo=alexbelgium/hassio-addons - name: Commit if needed uses: EndBug/add-and-commit@v9 with: From bf9074e5400bc9542504fb4412c40e0df95fc02b Mon Sep 17 00:00:00 2001 From: github-actions <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 23 Mar 2023 09:26:26 +0000 Subject: [PATCH 11/14] GitHub bot : graphs updated --- .github/stars2.svg | 303 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 303 insertions(+) create mode 100644 .github/stars2.svg diff --git a/.github/stars2.svg b/.github/stars2.svg new file mode 100644 index 000000000..a2b733bdf --- /dev/null +++ b/.github/stars2.svg @@ -0,0 +1,303 @@ + + + +\nalexbelgium + + + + + + + +\npetersendev + + + + + + + +\nbruvv + + + + + + + +\nbaldarn + + + + + + + +\nelmerenges + + + + + + + +\nelahd + + + + + + + +\nwoutercoppens + + + + + + + +\nDeckoz2302 + + + + + + + +\nNODeeJay + + + + + + + +\ndanbruno + + + + + + + +\nmarciogranzotto + + + + + + + +\nfkhofmann + + + + + + + +\ntyjtyj + + + + + + + +\nAlecRust + + + + + + + +\nBerghsJelmer + + + + + + + +\nEalenn + + + + + + + +\nSilvioMessi + + + + + + + +\nproffalken + + + + + + + +\nankushg + + + + + + + +\nChronoRadion + + + + + + + +\nDDanii + + + + + + + +\nEpicLPer + + + + + + + +\ngieljnssns + + + + + + + +\nImgBotApp + + + + + + + +\njeffothy + + + + + + + +\nMaxWinterstein + + + + + + + +\nnathang21 + + + + + + + +\nSpand0x + + + + + + + +\ntmcarr + + + + + + + +\nacervicius + + + + + + + +\ndavoloko + + + + + + + +\nmonkey-debugger + + + + + + + +\nmxwi + + + + + + + +\nnovisys + + + + + + + +\npullaf + + + + + + + +\ntdn131 + + + + + + + +\nwesleygas + + + + + + + + From 220d7d2e7f5aaedc6a61e750577cf6ea7ea9fb02 Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Thu, 23 Mar 2023 10:28:47 +0100 Subject: [PATCH 12/14] Update helper_stats_graphs.yaml --- .github/workflows/helper_stats_graphs.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/helper_stats_graphs.yaml b/.github/workflows/helper_stats_graphs.yaml index 07b2ed7c0..74672226d 100644 --- a/.github/workflows/helper_stats_graphs.yaml +++ b/.github/workflows/helper_stats_graphs.yaml @@ -227,7 +227,7 @@ jobs: # Get stars wget -S -O .github/stars.svg https://contrib.rocks/image?repo=alexbelgium/hassio-addons # Get stars2 - wget -S -O .github/stars2.svg https://contrib.rocks/image?repo=alexbelgium/hassio-addons + wget -S -O .github/stars2.svg https://git-lister.onrender.com/api/stars/alexbelgium/hassio-addons?limit=30 - name: Commit if needed uses: EndBug/add-and-commit@v9 with: From d92d5516fba3dce9b0bbfc79aeeb06087f0f8a9d Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Thu, 23 Mar 2023 10:33:26 +0100 Subject: [PATCH 13/14] Update helper_stats_graphs.yaml --- .github/workflows/helper_stats_graphs.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/helper_stats_graphs.yaml b/.github/workflows/helper_stats_graphs.yaml index 74672226d..37c5038ad 100644 --- a/.github/workflows/helper_stats_graphs.yaml +++ b/.github/workflows/helper_stats_graphs.yaml @@ -225,9 +225,9 @@ jobs: run: | echo "Starting run" # Get stars - wget -S -O .github/stars.svg https://contrib.rocks/image?repo=alexbelgium/hassio-addons + wget -S -O .github/stars.svg https://contrib.rocks/image?repo=alexbelgium/hassio-addons || true # Get stars2 - wget -S -O .github/stars2.svg https://git-lister.onrender.com/api/stars/alexbelgium/hassio-addons?limit=30 + wget -S -O .github/stars2.svg https://git-lister.onrender.com/api/stars/alexbelgium/hassio-addons?limit=30 || true - name: Commit if needed uses: EndBug/add-and-commit@v9 with: From 28ada22e54245e2bd70377748a1d0a3157b9710b Mon Sep 17 00:00:00 2001 From: github-actions <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 23 Mar 2023 09:34:05 +0000 Subject: [PATCH 14/14] GitHub bot : graphs updated --- .github/stars2.svg | 303 --------------------------------------------- 1 file changed, 303 deletions(-) diff --git a/.github/stars2.svg b/.github/stars2.svg index a2b733bdf..e69de29bb 100644 --- a/.github/stars2.svg +++ b/.github/stars2.svg @@ -1,303 +0,0 @@ - - - -\nalexbelgium - - - - - - - -\npetersendev - - - - - - - -\nbruvv - - - - - - - -\nbaldarn - - - - - - - -\nelmerenges - - - - - - - -\nelahd - - - - - - - -\nwoutercoppens - - - - - - - -\nDeckoz2302 - - - - - - - -\nNODeeJay - - - - - - - -\ndanbruno - - - - - - - -\nmarciogranzotto - - - - - - - -\nfkhofmann - - - - - - - -\ntyjtyj - - - - - - - -\nAlecRust - - - - - - - -\nBerghsJelmer - - - - - - - -\nEalenn - - - - - - - -\nSilvioMessi - - - - - - - -\nproffalken - - - - - - - -\nankushg - - - - - - - -\nChronoRadion - - - - - - - -\nDDanii - - - - - - - -\nEpicLPer - - - - - - - -\ngieljnssns - - - - - - - -\nImgBotApp - - - - - - - -\njeffothy - - - - - - - -\nMaxWinterstein - - - - - - - -\nnathang21 - - - - - - - -\nSpand0x - - - - - - - -\ntmcarr - - - - - - - -\nacervicius - - - - - - - -\ndavoloko - - - - - - - -\nmonkey-debugger - - - - - - - -\nmxwi - - - - - - - -\nnovisys - - - - - - - -\npullaf - - - - - - - -\ntdn131 - - - - - - - -\nwesleygas - - - - - - - -