From c7caa2ce68aea8865cfa0d5b0a81b48ca17897fc Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Sat, 4 Oct 2025 17:05:45 +0000 Subject: [PATCH 1/4] =?UTF-8?q?=F0=9F=94=A7=20Renovate:=20Update=20(digest?= =?UTF-8?q?)=20rommapp/romm:latest=20Docker=20digest=20to=20f9a66d7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docker-compose.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker-compose.yml b/docker-compose.yml index e4cd95e8..95657ce5 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -5607,7 +5607,7 @@ services: condition: service_healthy required: true restart: true - image: rommapp/romm:latest@sha256:a492592dad85b7d9bae9fca9ac958eb04492e383002abbd3566a7efb3b251091 + image: rommapp/romm:latest@sha256:f9a66d759f255ddbc5cd635bf6b66efe17f75babda5863aad318ade1845d7d68 environment: ROMM_DB_DRIVER: mariadb # mariadb | sqlite (default: sqlite) ROMM_HOST: https://localhost:3000 # [Optional] your host ip or domain name (including http(s)://, subdomain and port if needed). Being used only for webRcade feed for now. From f56a09a5f2c5a8061bd30ae8f199d79a06801a51 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Sat, 4 Oct 2025 17:30:01 +0000 Subject: [PATCH 2/4] =?UTF-8?q?=F0=9F=94=A7=20Renovate:=20Update=20(digest?= =?UTF-8?q?)=20ghcr.io/wizarrrr/wizarr=20Docker=20digest=20to=200681c27?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docker-compose.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker-compose.yml b/docker-compose.yml index 95657ce5..27bdf36f 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -7028,7 +7028,7 @@ services: PGID: ${PGID} DISABLE_BUILTIN_AUTH: true TZ: ${TZ} - image: ghcr.io/wizarrrr/wizarr@sha256:a6a5b6d5e3e4a37b2bb60d9bee135717ab5c744fc55775fc1e608cff7e2f929a + image: ghcr.io/wizarrrr/wizarr@sha256:0681c279ebe80e73d0536a791d7ea2bcacaa4e6b865fbc026481d76315bf8e0a labels: homepage.group: Servarr Stack homepage.name: Wizarr From ab1a386a2928f5c629e1e161bbf3cba2721e0f1a Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Sat, 4 Oct 2025 17:11:45 +0000 Subject: [PATCH 3/4] =?UTF-8?q?=F0=9F=94=A7=20Renovate:=20Update=20(digest?= =?UTF-8?q?)=20lscr.io/linuxserver/swag:latest=20Docker=20digest=20to=2008?= =?UTF-8?q?af17a?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docker-compose.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker-compose.yml b/docker-compose.yml index 27bdf36f..fcdad9a9 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -6493,7 +6493,7 @@ services: UPTIME_KUMA_URL: http://uptimekuma:3001 UPTIME_KUMA_USERNAME: ${UPTIME_KUMA_USERNAME} hostname: Rinoa - image: lscr.io/linuxserver/swag:latest@sha256:5f4f148eac1e5682db56186681dd296767013957f071d900d770040811738394 + image: lscr.io/linuxserver/swag:latest@sha256:08af17ae67c12e9b42a17d33fe538f67853020294c1f89c8e9d5b213c89c47ae labels: swag: enable swag_proto: http From 41b2e21ba9be8a19e72a9f75b581f409dc4a93c3 Mon Sep 17 00:00:00 2001 From: "Trez.One" Date: Sat, 4 Oct 2025 14:33:06 -0400 Subject: [PATCH 4/4] Refactoring PR check/creation in manual PR workflow. --- .../workflows/pr-cloudflare-docker-deploy.yml | 54 ++++--------------- 1 file changed, 9 insertions(+), 45 deletions(-) diff --git a/.gitea/workflows/pr-cloudflare-docker-deploy.yml b/.gitea/workflows/pr-cloudflare-docker-deploy.yml index 8e4cf2b1..2b20e19c 100644 --- a/.gitea/workflows/pr-cloudflare-docker-deploy.yml +++ b/.gitea/workflows/pr-cloudflare-docker-deploy.yml @@ -24,13 +24,6 @@ jobs: with: fetch-depth: 1 - - name: Install tea - uses: supplypike/setup-bin@8e3f88b4f143d9b5c3497f0fc12d45c83c123787 # v4.0.1 - with: - uri: https://gitea.com/gitea/tea/releases/download/v${{ env.TEA_VERSION }}/tea-${{ env.TEA_VERSION }}-linux-amd64 - name: tea - version: ${{ env.TEA_VERSION }} - - name: Gotify Notification uses: eikendev/gotify-action@master with: @@ -39,43 +32,14 @@ jobs: notification_title: "GITEA: PR Check @ Rinoa" notification_message: "Checking for existing PR... 🔍" - - name: Check if open PR exists - id: check-opened-pr-step - continue-on-error: true - run: | - tea login add \ - --name gitea-rinoa \ - --url "${{ secrets.TREZ_GITEA_URL }}" \ - --user gitea-sonarqube-bot \ - --password "${{ secrets.BOT_GITEA_PASSWORD }}" \ - --token ${{ secrets.BOT_GITEA_TOKEN }} - - pr_exists=$(tea pr list \ - --repo ${{ github.repository }} \ - --state open \ - --fields index,title,head \ - | egrep '\[DOCKER\].*${{ github.ref_name }}' | tail -1 | wc -l) - - echo "exists=$pr_exists" >> $GITHUB_OUTPUT - - - name: Create PR - if: ${{ steps.check-opened-pr-step.outputs.exists == '0' }} - run: | - tea login default gitea-rinoa - - pr_index_old=$(tea pr ls \ - --repo ${{ github.repository }} \ - --state all --fields index,title,head \ - --output csv | sed -e 's|"||g' | \ - egrep '^[0-9]' | head -1 | awk -F"," '{print $1}') - - pr_index_new=$(expr ${pr_index_old} + 1) - - tea pr c -r ${{ github.repository }} \ - -t "[DOCKER] Automated PR for ${{ github.ref_name }} - #${pr_index_new}" \ - -d "Automatically created PR for branch: ${{ github.ref_name }}" \ - -a ${{ github.actor }} \ - -L "Docker Compose" + - name: PR Check/Creation + uses: https://git.trez.wtf/Trez/gitea-auto-pr@main + with: + url: ${{ secrets.TREZ_GITEA_URL }} + token: ${{ secrets.BOT_GITEA_TOKEN }} + tea-version: ${{ env.TEA_VERSION }} + pr-label: rinoa-docker,manual + assignee: ${{ github.actor }} - name: Gotify Notification uses: eikendev/gotify-action@master @@ -83,7 +47,7 @@ jobs: gotify_api_base: "${{ secrets.RUNNER_GOTIFY_URL }}" gotify_app_token: "${{ secrets.RUNNER_GOTIFY_TOKEN }}" notification_title: "GITEA: PR Check @ Rinoa" - notification_message: "PR Created 🎟️" + notification_message: "PR Check done 🎟️" generate-service-list: name: Generate list of added/modified/deleted services