mirror of
				https://github.com/paperless-ngx/paperless-ngx.git
				synced 2025-11-03 03:16:10 -06:00 
			
		
		
		
	Bumps the actions group with 3 updates: [actions/checkout](https://github.com/actions/checkout), [actions/download-artifact](https://github.com/actions/download-artifact) and [stumpylog/image-cleaner-action](https://github.com/stumpylog/image-cleaner-action). Updates `actions/checkout` from 4 to 5 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v4...v5) Updates `actions/download-artifact` from 4 to 5 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/v4...v5) Updates `stumpylog/image-cleaner-action` from 0.10.0 to 0.11.0 - [Release notes](https://github.com/stumpylog/image-cleaner-action/releases) - [Changelog](https://github.com/stumpylog/image-cleaner-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/stumpylog/image-cleaner-action/compare/v0.10.0...v0.11.0) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/download-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: stumpylog/image-cleaner-action dependency-version: 0.11.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Trenton H <797416+stumpylog@users.noreply.github.com>
		
			
				
	
	
		
			31 lines
		
	
	
		
			951 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
		
			951 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
name: Crowdin Action
 | 
						|
on:
 | 
						|
  workflow_dispatch:
 | 
						|
  schedule:
 | 
						|
    - cron: '2 */12 * * *'
 | 
						|
  push:
 | 
						|
    paths: ['src/locale/**', 'src-ui/messages.xlf', 'src-ui/src/locale/**']
 | 
						|
    branches: [dev]
 | 
						|
jobs:
 | 
						|
  synchronize-with-crowdin:
 | 
						|
    name: Crowdin Sync
 | 
						|
    if: github.repository_owner == 'paperless-ngx'
 | 
						|
    runs-on: ubuntu-24.04
 | 
						|
    steps:
 | 
						|
      - name: Checkout
 | 
						|
        uses: actions/checkout@v5
 | 
						|
        with:
 | 
						|
          token: ${{ secrets.PNGX_BOT_PAT }}
 | 
						|
      - name: crowdin action
 | 
						|
        uses: crowdin/github-action@v2
 | 
						|
        with:
 | 
						|
          upload_translations: false
 | 
						|
          download_translations: true
 | 
						|
          crowdin_branch_name: 'dev'
 | 
						|
          localization_branch_name: l10n_dev
 | 
						|
          pull_request_labels: 'skip-changelog, translation'
 | 
						|
        env:
 | 
						|
          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
 | 
						|
          CROWDIN_PROJECT_ID: ${{ secrets.CROWDIN_PROJECT_ID }}
 | 
						|
          CROWDIN_PERSONAL_TOKEN: ${{ secrets.CROWDIN_PERSONAL_TOKEN }}
 |