3d0f5ea21c
Bumps [tibdex/github-app-token](https://github.com/tibdex/github-app-token) from 1 to 2. - [Release notes](https://github.com/tibdex/github-app-token/releases) - [Commits](https://github.com/tibdex/github-app-token/compare/v1...v2) --- updated-dependencies: - dependency-name: tibdex/github-app-token dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
41 lines
1.1 KiB
YAML
41 lines
1.1 KiB
YAML
name: authentik-backend-translate-compile
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
paths:
|
|
- "locale/**"
|
|
workflow_dispatch:
|
|
|
|
env:
|
|
POSTGRES_DB: authentik
|
|
POSTGRES_USER: authentik
|
|
POSTGRES_PASSWORD: "EK-5jnKfjrGRm<77"
|
|
|
|
jobs:
|
|
compile:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- id: generate_token
|
|
uses: tibdex/github-app-token@v2
|
|
with:
|
|
app_id: ${{ secrets.GH_APP_ID }}
|
|
private_key: ${{ secrets.GH_APP_PRIVATE_KEY }}
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
token: ${{ steps.generate_token.outputs.token }}
|
|
- name: Setup authentik env
|
|
uses: ./.github/actions/setup
|
|
- name: run compile
|
|
run: poetry run ak compilemessages
|
|
- name: Create Pull Request
|
|
uses: peter-evans/create-pull-request@v5
|
|
id: cpr
|
|
with:
|
|
token: ${{ steps.generate_token.outputs.token }}
|
|
branch: compile-backend-translation
|
|
commit-message: "core: compile backend translations"
|
|
title: "core: compile backend translations"
|
|
body: "core: compile backend translations"
|
|
delete-branch: true
|
|
signoff: true
|