40 lines
1016 B
YAML
40 lines
1016 B
YAML
name: authentik-backend-translate-compile
|
|
on:
|
|
push:
|
|
branches: [ master ]
|
|
paths:
|
|
- '/locale/'
|
|
schedule:
|
|
- cron: "0 */2 * * *"
|
|
workflow_dispatch:
|
|
|
|
env:
|
|
POSTGRES_DB: authentik
|
|
POSTGRES_USER: authentik
|
|
POSTGRES_PASSWORD: "EK-5jnKfjrGRm<77"
|
|
|
|
jobs:
|
|
compile:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: actions/setup-python@v2
|
|
with:
|
|
python-version: '3.9'
|
|
- name: prepare
|
|
run: |
|
|
sudo apt-get update
|
|
sudo apt-get install -y gettext
|
|
scripts/ci_prepare.sh
|
|
- name: run compile
|
|
run: pipenv run ./manage.py compilemessages
|
|
- name: Create Pull Request
|
|
uses: peter-evans/create-pull-request@v3
|
|
with:
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
branch: compile-backend-translation
|
|
commit-message: "core: compile backend translations"
|
|
title: "core: compile backend translations"
|
|
delete-branch: true
|
|
signoff: true
|