mirror of
				https://github.com/paperless-ngx/paperless-ngx.git
				synced 2025-11-03 03:16:10 -06:00 
			
		
		
		
	* Chore(deps): Bump the actions group with 5 updates Bumps the actions group with 5 updates: | Package | From | To | | --- | --- | --- | | [actions/github-script](https://github.com/actions/github-script) | `7` | `8` | | [actions/setup-python](https://github.com/actions/setup-python) | `5` | `6` | | [actions/setup-node](https://github.com/actions/setup-node) | `4` | `5` | | [actions/labeler](https://github.com/actions/labeler) | `5` | `6` | | [actions/stale](https://github.com/actions/stale) | `9` | `10` | Updates `actions/github-script` from 7 to 8 - [Release notes](https://github.com/actions/github-script/releases) - [Commits](https://github.com/actions/github-script/compare/v7...v8) Updates `actions/setup-python` from 5 to 6 - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](https://github.com/actions/setup-python/compare/v5...v6) Updates `actions/setup-node` from 4 to 5 - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](https://github.com/actions/setup-node/compare/v4...v5) Updates `actions/labeler` from 5 to 6 - [Release notes](https://github.com/actions/labeler/releases) - [Commits](https://github.com/actions/labeler/compare/v5...v6) Updates `actions/stale` from 9 to 10 - [Release notes](https://github.com/actions/stale/releases) - [Changelog](https://github.com/actions/stale/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/stale/compare/v9...v10) --- updated-dependencies: - dependency-name: actions/github-script dependency-version: '8' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/setup-python dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/setup-node dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/labeler dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/stale dependency-version: '10' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions ... Signed-off-by: dependabot[bot] <support@github.com> * Add pnpm packageManager --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: shamoon <4887959+shamoon@users.noreply.github.com>
		
			
				
	
	
		
			70 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			70 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
name: Generate Translation Strings
 | 
						|
on:
 | 
						|
  push:
 | 
						|
    branches:
 | 
						|
      - dev
 | 
						|
jobs:
 | 
						|
  generate-translate-strings:
 | 
						|
    name: Generate Translation Strings
 | 
						|
    runs-on: ubuntu-latest
 | 
						|
    permissions:
 | 
						|
      contents: write
 | 
						|
    steps:
 | 
						|
      - name: Checkout code
 | 
						|
        uses: actions/checkout@v5
 | 
						|
        with:
 | 
						|
          token: ${{ secrets.PNGX_BOT_PAT }}
 | 
						|
          ref: ${{ github.head_ref }}
 | 
						|
      - name: Set up Python
 | 
						|
        id: setup-python
 | 
						|
        uses: actions/setup-python@v6
 | 
						|
      - name: Install system dependencies
 | 
						|
        run: |
 | 
						|
          sudo apt-get update -qq
 | 
						|
          sudo apt-get install -qq --no-install-recommends gettext
 | 
						|
      - name: Install uv
 | 
						|
        uses: astral-sh/setup-uv@v6
 | 
						|
        with:
 | 
						|
          enable-cache: true
 | 
						|
      - name: Install backend python dependencies
 | 
						|
        run: |
 | 
						|
          uv sync \
 | 
						|
            --group dev \
 | 
						|
            --frozen
 | 
						|
      - name: Generate backend translation strings
 | 
						|
        run: cd src/ && uv run manage.py makemessages -l en_US -i "samples*"
 | 
						|
      - name: Install pnpm
 | 
						|
        uses: pnpm/action-setup@v4
 | 
						|
        with:
 | 
						|
          version: 10
 | 
						|
      - name: Use Node.js 20
 | 
						|
        uses: actions/setup-node@v5
 | 
						|
        with:
 | 
						|
          node-version: 20.x
 | 
						|
          cache: 'pnpm'
 | 
						|
          cache-dependency-path: 'src-ui/pnpm-lock.yaml'
 | 
						|
      - name: Cache frontend dependencies
 | 
						|
        id: cache-frontend-deps
 | 
						|
        uses: actions/cache@v4
 | 
						|
        with:
 | 
						|
          path: |
 | 
						|
            ~/.pnpm-store
 | 
						|
            ~/.cache
 | 
						|
          key: ${{ runner.os }}-frontenddeps-${{ hashFiles('src-ui/pnpm-lock.yaml') }}
 | 
						|
      - name: Install frontend dependencies
 | 
						|
        if: steps.cache-frontend-deps.outputs.cache-hit != 'true'
 | 
						|
        run: cd src-ui && pnpm install
 | 
						|
      - name: Re-link Angular cli
 | 
						|
        run: cd src-ui && pnpm link @angular/cli
 | 
						|
      - name: Generate frontend translation strings
 | 
						|
        run: |
 | 
						|
          cd src-ui
 | 
						|
          pnpm run ng extract-i18n
 | 
						|
      - name: Commit changes
 | 
						|
        uses: stefanzweifel/git-auto-commit-action@v6
 | 
						|
        with:
 | 
						|
          file_pattern: 'src-ui/messages.xlf src/locale/en_US/LC_MESSAGES/django.po'
 | 
						|
          commit_message: "Auto translate strings"
 | 
						|
          commit_user_name: "GitHub Actions"
 | 
						|
          commit_author: "GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com>"
 |