b40caf12df
* core: bump node from 18 to 20 Bumps node from 18 to 20. --- updated-dependencies: - dependency-name: node dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> * bump node everywhere, fixup go ci Signed-off-by: Jens Langhammer <jens@goauthentik.io> * bump versions in docs Signed-off-by: Jens Langhammer <jens@goauthentik.io> --------- Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: Jens Langhammer <jens@goauthentik.io> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Jens Langhammer <jens@goauthentik.io>
39 lines
1,005 B
YAML
39 lines
1,005 B
YAML
name: authentik-backend-translate-compile
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
paths:
|
|
- "/locale/"
|
|
pull_request:
|
|
paths:
|
|
- "/locale/"
|
|
workflow_dispatch:
|
|
|
|
env:
|
|
POSTGRES_DB: authentik
|
|
POSTGRES_USER: authentik
|
|
POSTGRES_PASSWORD: "EK-5jnKfjrGRm<77"
|
|
|
|
jobs:
|
|
compile:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
with:
|
|
token: ${{ secrets.BOT_GITHUB_TOKEN }}
|
|
- name: Setup authentik env
|
|
uses: ./.github/actions/setup
|
|
- name: run compile
|
|
run: poetry run ./manage.py compilemessages
|
|
- name: Create Pull Request
|
|
uses: peter-evans/create-pull-request@v5
|
|
id: cpr
|
|
with:
|
|
token: ${{ secrets.BOT_GITHUB_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
|