Parcourir la source

fix: remove trailing spaces from workflow file

xcad il y a 6 mois
Parent
commit
992379969f
1 fichiers modifiés avec 2 ajouts et 2 suppressions
  1. 2 2
      .github/workflows/renovate-sync-versions.yaml

+ 2 - 2
.github/workflows/renovate-sync-versions.yaml

@@ -30,7 +30,7 @@ jobs:
         run: |
         run: |
           # Get list of changed files in library/
           # Get list of changed files in library/
           CHANGED_FILES=$(git diff --name-only origin/main...HEAD | grep '^library/' | grep -E '\.(j2|yaml|yml)$' || true)
           CHANGED_FILES=$(git diff --name-only origin/main...HEAD | grep '^library/' | grep -E '\.(j2|yaml|yml)$' || true)
-          
+
           if [ -n "$CHANGED_FILES" ]; then
           if [ -n "$CHANGED_FILES" ]; then
             echo "Changed template files:"
             echo "Changed template files:"
             echo "$CHANGED_FILES"
             echo "$CHANGED_FILES"
@@ -49,7 +49,7 @@ jobs:
         run: |
         run: |
           echo "Running template version sync script..."
           echo "Running template version sync script..."
           chmod +x .github/scripts/sync-template-version.sh
           chmod +x .github/scripts/sync-template-version.sh
-          
+
           # Pass changed files to the script
           # Pass changed files to the script
           .github/scripts/sync-template-version.sh ${{ steps.changes.outputs.files }}
           .github/scripts/sync-template-version.sh ${{ steps.changes.outputs.files }}