core: bump goauthentik/fips-python from 3.12.7-slim-bookworm-fips-full to 3.13.0-slim-bookworm-fips-full #4046
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Rename transifex pull requests to have a correct naming | |
# Also enables auto squash-merge | |
name: authentik-translation-transifex-rename | |
on: | |
pull_request: | |
types: [opened, reopened] | |
permissions: | |
# Permission to rename PR | |
pull-requests: write | |
jobs: | |
rename_pr: | |
runs-on: ubuntu-latest | |
if: ${{ github.event.pull_request.user.login == 'transifex-integration[bot]'}} | |
steps: | |
- id: generate_token | |
uses: tibdex/github-app-token@v2 | |
with: | |
app_id: ${{ secrets.GH_APP_ID }} | |
private_key: ${{ secrets.GH_APP_PRIVATE_KEY }} | |
- name: Get current title | |
id: title | |
env: | |
GH_TOKEN: ${{ steps.generate_token.outputs.token }} | |
run: | | |
title=$(curl -q -L \ | |
-H "Accept: application/vnd.github+json" \ | |
-H "Authorization: Bearer ${GH_TOKEN}" \ | |
-H "X-GitHub-Api-Version: 2022-11-28" \ | |
https://api.github.com/repos/${GITHUB_REPOSITORY}/pulls/${{ github.event.pull_request.number }} | jq -r .title) | |
echo "title=${title}" >> "$GITHUB_OUTPUT" | |
- name: Rename | |
env: | |
GH_TOKEN: ${{ steps.generate_token.outputs.token }} | |
run: | | |
curl -L \ | |
-X PATCH \ | |
-H "Accept: application/vnd.github+json" \ | |
-H "Authorization: Bearer ${GH_TOKEN}" \ | |
-H "X-GitHub-Api-Version: 2022-11-28" \ | |
https://api.github.com/repos/${GITHUB_REPOSITORY}/pulls/${{ github.event.pull_request.number }} \ | |
-d "{\"title\":\"translate: ${{ steps.title.outputs.title }}\"}" | |
- uses: peter-evans/enable-pull-request-automerge@v3 | |
with: | |
token: ${{ steps.generate_token.outputs.token }} | |
pull-request-number: ${{ github.event.pull_request.number }} | |
merge-method: squash |