소스 검색

fix: remove trailing spaces from workflow file

xcad 4 달 전
부모
커밋
992379969f
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      .github/workflows/renovate-sync-versions.yaml

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

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