mirror of
https://github.com/frappe/erpnext.git
synced 2026-02-12 17:23:38 +00:00
45 lines
1.2 KiB
YAML
45 lines
1.2 KiB
YAML
# This workflow is agnostic to branches. Only maintain on develop branch.
|
|
# To add/remove branches just modify the matrix.
|
|
|
|
name: Regenerate POT file (translatable strings)
|
|
on:
|
|
schedule:
|
|
# 9:30 UTC => 3 PM IST Sunday
|
|
- cron: "30 9 * * 0"
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
regenerate-pot-file:
|
|
name: Regenerate POT file
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
branch: ["develop", "version-16-hotfix"]
|
|
permissions:
|
|
contents: write
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v6
|
|
with:
|
|
ref: ${{ matrix.branch }}
|
|
|
|
- name: Setup Python
|
|
uses: actions/setup-python@v6
|
|
with:
|
|
python-version: "3.14"
|
|
|
|
- name: Setup Node
|
|
uses: actions/setup-node@v6
|
|
with:
|
|
node-version: 24
|
|
|
|
- name: Run script to update POT file
|
|
run: |
|
|
bash ${GITHUB_WORKSPACE}/.github/helper/update_pot_file.sh
|
|
env:
|
|
GH_TOKEN: ${{ secrets.RELEASE_TOKEN }}
|
|
BASE_BRANCH: ${{ matrix.branch }}
|
|
PR_REVIEWER: barredterra # change to your GitHub username if you copied this file
|