Tweaking Renovate workflow.
Deploy Renovate Updates / Deploy Updated Services With Dependencies (push) Failing after 14m21s

This commit is contained in:
2025-09-04 10:10:44 -04:00
parent c7f2ea61b1
commit e3d5d792af
+3 -2
View File
@@ -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=()