| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- name: Update translation strings
- on:
- schedule:
- - cron: '0 5 * * *'
- workflow_dispatch:
- permissions:
- contents: write
- env:
- LOCALE: "en"
- jobs:
- makemessages:
- if: github.repository == 'netbox-community/netbox'
- runs-on: ubuntu-latest
- env:
- NETBOX_CONFIGURATION: netbox.configuration_testing
- steps:
- - name: Create app token
- uses: actions/create-github-app-token@v1
- id: app-token
- with:
- app-id: 1076524
- private-key: ${{ secrets.HOUSEKEEPING_SECRET_KEY }}
- - name: Check out repo
- uses: actions/checkout@v4
- with:
- token: ${{ steps.app-token.outputs.token }}
- - name: Set up Python
- uses: actions/setup-python@v5
- with:
- python-version: 3.12
- - name: Install system dependencies
- run: sudo apt install -y gettext
- - name: Install Python dependencies
- run: |
- python -m pip install --upgrade pip
- pip install -r requirements.txt
- - name: Run makemessages
- run: python netbox/manage.py makemessages -l ${{ env.LOCALE }}
- - name: Commit changes
- uses: EndBug/add-and-commit@a94899bca583c204427a224a7af87c02f9b325d5 # v9.1.4
- with:
- add: 'netbox/translations/'
- default_author: github_actions
- message: 'Update source translation strings'
|