mirror of
https://github.com/netbox-community/netbox.git
synced 2026-03-25 10:52:44 +01:00
Pin GitHub Actions references to full commit SHAs instead of version tags to reduce supply chain risk from tag retargeting. Update actions/checkout to v6.0.2, actions/setup-python to v6.2.0, actions/setup-node to v6.3.0, actions/stale to v10.2.0, and dessant/lock-threads to v6.0.0.
56 lines
1.4 KiB
YAML
56 lines
1.4 KiB
YAML
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@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
|
with:
|
|
token: ${{ steps.app-token.outputs.token }}
|
|
|
|
- name: Set up Python
|
|
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
|
|
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'
|