mirror of
				https://github.com/Frooodle/Stirling-PDF.git
				synced 2025-11-01 01:21:18 +01:00 
			
		
		
		
	Frooodle patch 8 (#2275)
* Update check_properties.yml * Update messages_en_GB.properties * Update messages_en_GB.properties
This commit is contained in:
		
							parent
							
								
									c239d95131
								
							
						
					
					
						commit
						a6ae3734ca
					
				
							
								
								
									
										54
									
								
								.github/workflows/check_properties.yml
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										54
									
								
								.github/workflows/check_properties.yml
									
									
									
									
										vendored
									
									
								
							@ -9,6 +9,7 @@ on:
 | 
				
			|||||||
    paths:
 | 
					    paths:
 | 
				
			||||||
      - "src/main/resources/messages_en_GB.properties"
 | 
					      - "src/main/resources/messages_en_GB.properties"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					# Permissions required for the workflow
 | 
				
			||||||
permissions:
 | 
					permissions:
 | 
				
			||||||
  contents: write
 | 
					  contents: write
 | 
				
			||||||
  pull-requests: write
 | 
					  pull-requests: write
 | 
				
			||||||
@ -18,6 +19,13 @@ jobs:
 | 
				
			|||||||
    if: github.event_name == 'pull_request_target'
 | 
					    if: github.event_name == 'pull_request_target'
 | 
				
			||||||
    runs-on: ubuntu-latest
 | 
					    runs-on: ubuntu-latest
 | 
				
			||||||
    steps:
 | 
					    steps:
 | 
				
			||||||
 | 
					      - name: Checkout main branch first
 | 
				
			||||||
 | 
					        uses: actions/checkout@v4
 | 
				
			||||||
 | 
					        with:
 | 
				
			||||||
 | 
					          ref: main
 | 
				
			||||||
 | 
					          path: main-branch
 | 
				
			||||||
 | 
					          fetch-depth: 0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
      - name: Checkout PR branch
 | 
					      - name: Checkout PR branch
 | 
				
			||||||
        uses: actions/checkout@v4
 | 
					        uses: actions/checkout@v4
 | 
				
			||||||
        with:
 | 
					        with:
 | 
				
			||||||
@ -26,13 +34,6 @@ jobs:
 | 
				
			|||||||
          path: pr-branch
 | 
					          path: pr-branch
 | 
				
			||||||
          fetch-depth: 0
 | 
					          fetch-depth: 0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
      - name: Checkout main branch
 | 
					 | 
				
			||||||
        uses: actions/checkout@v4
 | 
					 | 
				
			||||||
        with:
 | 
					 | 
				
			||||||
          ref: main
 | 
					 | 
				
			||||||
          path: main-branch
 | 
					 | 
				
			||||||
          fetch-depth: 0
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
      - name: Set up Python
 | 
					      - name: Set up Python
 | 
				
			||||||
        uses: actions/setup-python@v5
 | 
					        uses: actions/setup-python@v5
 | 
				
			||||||
        with:
 | 
					        with:
 | 
				
			||||||
@ -49,34 +50,46 @@ jobs:
 | 
				
			|||||||
          echo "Fetching PR changed files..."
 | 
					          echo "Fetching PR changed files..."
 | 
				
			||||||
          cd pr-branch
 | 
					          cd pr-branch
 | 
				
			||||||
          gh repo set-default ${{ github.repository }}
 | 
					          gh repo set-default ${{ github.repository }}
 | 
				
			||||||
          gh pr view ${{ github.event.pull_request.number }} --json files -q ".files[].path" > ../changed_files.txt
 | 
					          # Store files in a safe way, only allowing valid properties files
 | 
				
			||||||
 | 
					          echo "Getting list of changed files from PR..."
 | 
				
			||||||
 | 
					          gh pr view ${{ github.event.pull_request.number }} --json files -q ".files[].path" | grep -E '^src/main/resources/messages_[a-zA-Z_]+\.properties$' > ../changed_files.txt
 | 
				
			||||||
          cd ..
 | 
					          cd ..
 | 
				
			||||||
          echo $(cat changed_files.txt)
 | 
					          echo "Setting branch path..."
 | 
				
			||||||
          BRANCH_PATH="pr-branch"
 | 
					          BRANCH_PATH="pr-branch"
 | 
				
			||||||
 | 
					          
 | 
				
			||||||
          echo "BRANCH_PATH=${BRANCH_PATH}" >> $GITHUB_ENV
 | 
					          echo "BRANCH_PATH=${BRANCH_PATH}" >> $GITHUB_ENV
 | 
				
			||||||
          CHANGED_FILES=$(cat changed_files.txt | tr '\n' ' ')
 | 
					          echo "Processing changed files..."
 | 
				
			||||||
          echo "CHANGED_FILES=${CHANGED_FILES}" >> $GITHUB_ENV
 | 
					          mapfile -t CHANGED_FILES < changed_files.txt
 | 
				
			||||||
          echo "Changed files: ${CHANGED_FILES}"
 | 
					
 | 
				
			||||||
 | 
					          CHANGED_FILES_STR="${CHANGED_FILES[*]}"
 | 
				
			||||||
 | 
					          echo "CHANGED_FILES=${CHANGED_FILES_STR}" >> $GITHUB_ENV
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					          echo "Changed files: ${CHANGED_FILES_STR}"
 | 
				
			||||||
          echo "Branch: ${BRANCH_PATH}"
 | 
					          echo "Branch: ${BRANCH_PATH}"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
      - name: Determine reference file
 | 
					      - name: Determine reference file
 | 
				
			||||||
        id: determine-file
 | 
					        id: determine-file
 | 
				
			||||||
        run: |
 | 
					        run: |
 | 
				
			||||||
          echo "Determining reference file..."
 | 
					          echo "Determining reference file..."
 | 
				
			||||||
          if echo "${{ env.CHANGED_FILES }}" | grep -q 'src/main/resources/messages_en_GB.properties'; then
 | 
					          if grep -Fxq "src/main/resources/messages_en_GB.properties" changed_files.txt; then
 | 
				
			||||||
 | 
					              echo "Using PR branch reference file"
 | 
				
			||||||
              echo "REFERENCE_FILE=pr-branch/src/main/resources/messages_en_GB.properties" >> $GITHUB_ENV
 | 
					              echo "REFERENCE_FILE=pr-branch/src/main/resources/messages_en_GB.properties" >> $GITHUB_ENV
 | 
				
			||||||
          else
 | 
					          else
 | 
				
			||||||
 | 
					              echo "Using main branch reference file"
 | 
				
			||||||
              echo "REFERENCE_FILE=main-branch/src/main/resources/messages_en_GB.properties" >> $GITHUB_ENV
 | 
					              echo "REFERENCE_FILE=main-branch/src/main/resources/messages_en_GB.properties" >> $GITHUB_ENV
 | 
				
			||||||
          fi
 | 
					          fi
 | 
				
			||||||
          echo "REFERENCE_FILE=${{ env.REFERENCE_FILE }}"
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
      - name: Show REFERENCE_FILE
 | 
					      - name: Show REFERENCE_FILE
 | 
				
			||||||
        run: echo "Reference file is set to ${{ env.REFERENCE_FILE }}"
 | 
					        run: echo "Reference file is set to ${REFERENCE_FILE}"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
      - name: Run Python script to check files
 | 
					      - name: Run Python script to check files
 | 
				
			||||||
        id: run-check
 | 
					        id: run-check
 | 
				
			||||||
        run: |
 | 
					        run: |
 | 
				
			||||||
          python main-branch/.github/scripts/check_language_properties.py --reference-file ${{ env.REFERENCE_FILE }} --branch ${{ env.BRANCH_PATH }} --files ${{ env.CHANGED_FILES }} > failure.txt || true
 | 
					          echo "Running Python script to check files..."
 | 
				
			||||||
 | 
					          python main-branch/.github/scripts/check_language_properties.py \
 | 
				
			||||||
 | 
					            --reference-file "${REFERENCE_FILE}" \
 | 
				
			||||||
 | 
					            --branch "${BRANCH_PATH}" \
 | 
				
			||||||
 | 
					            --files ${CHANGED_FILES} > failure.txt || true
 | 
				
			||||||
 | 
					
 | 
				
			||||||
      - name: Capture output
 | 
					      - name: Capture output
 | 
				
			||||||
        id: capture-output
 | 
					        id: capture-output
 | 
				
			||||||
@ -87,7 +100,7 @@ jobs:
 | 
				
			|||||||
            echo "ERROR_OUTPUT<<EOF" >> $GITHUB_ENV
 | 
					            echo "ERROR_OUTPUT<<EOF" >> $GITHUB_ENV
 | 
				
			||||||
            echo "$ERROR_OUTPUT" >> $GITHUB_ENV
 | 
					            echo "$ERROR_OUTPUT" >> $GITHUB_ENV
 | 
				
			||||||
            echo "EOF" >> $GITHUB_ENV
 | 
					            echo "EOF" >> $GITHUB_ENV
 | 
				
			||||||
            echo $ERROR_OUTPUT
 | 
					            echo "${ERROR_OUTPUT}"
 | 
				
			||||||
          else
 | 
					          else
 | 
				
			||||||
            echo "No errors found."
 | 
					            echo "No errors found."
 | 
				
			||||||
            echo "ERROR_OUTPUT=" >> $GITHUB_ENV
 | 
					            echo "ERROR_OUTPUT=" >> $GITHUB_ENV
 | 
				
			||||||
@ -110,7 +123,7 @@ jobs:
 | 
				
			|||||||
            });
 | 
					            });
 | 
				
			||||||
 | 
					
 | 
				
			||||||
            const comment = comments.data.find(c => c.body.includes("## 🚀 Translation Verification Summary"));
 | 
					            const comment = comments.data.find(c => c.body.includes("## 🚀 Translation Verification Summary"));
 | 
				
			||||||
 | 
					            
 | 
				
			||||||
            // Only allow the action user to update comments
 | 
					            // Only allow the action user to update comments
 | 
				
			||||||
            const expectedActor = "github-actions[bot]";
 | 
					            const expectedActor = "github-actions[bot]";
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@ -169,7 +182,10 @@ jobs:
 | 
				
			|||||||
      - name: Run Python script to check files
 | 
					      - name: Run Python script to check files
 | 
				
			||||||
        id: run-check
 | 
					        id: run-check
 | 
				
			||||||
        run: |
 | 
					        run: |
 | 
				
			||||||
          python .github/scripts/check_language_properties.py --reference-file src/main/resources/messages_en_GB.properties --branch main
 | 
					          echo "Running Python script to check files..."
 | 
				
			||||||
 | 
					          python .github/scripts/check_language_properties.py \
 | 
				
			||||||
 | 
					            --reference-file src/main/resources/messages_en_GB.properties \
 | 
				
			||||||
 | 
					            --branch main
 | 
				
			||||||
 | 
					
 | 
				
			||||||
      - name: Set up git config
 | 
					      - name: Set up git config
 | 
				
			||||||
        run: |
 | 
					        run: |
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
		Reference in New Issue
	
	Block a user