From e3d5d792aff33ceec189701ed05534397712aa96 Mon Sep 17 00:00:00 2001 From: "Trez.One" Date: Thu, 4 Sep 2025 10:10:44 -0400 Subject: [PATCH] Tweaking Renovate workflow. --- .gitea/workflows/renovate-deploy.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/renovate-deploy.yml b/.gitea/workflows/renovate-deploy.yml index c57954a8..b6f19ea8 100644 --- a/.gitea/workflows/renovate-deploy.yml +++ b/.gitea/workflows/renovate-deploy.yml @@ -9,7 +9,8 @@ jobs: deploy: name: Deploy Updated Services With Dependencies runs-on: ubuntu-latest - if: contains(github.event.head_commit.message, 'Renovate') + # Only run if commit author name contains "renovate" (case-insensitive) + if: ${{ contains(toLower(github.event.head_commit.author.name), 'renovate') }} steps: - name: Checkout repository @@ -36,7 +37,7 @@ jobs: echo "Changed services: $CHANGED_SERVICES" - # Recursively collect dependencies, handling both array and mapping style + # Recursively collect dependencies declare -A VISITED ALL_DEPLOY=()