--- name: Gen - Webauthn MDS on: workflow_dispatch: schedule: - cron: "30 1 1,15 * *" env: POSTGRES_DB: authentik POSTGRES_USER: authentik POSTGRES_PASSWORD: "EK-5jnKfjrGRm<77" jobs: build: runs-on: ubuntu-latest steps: - id: generate_token uses: actions/create-github-app-token@1b10c78c7865c340bc4f6099eb2f838309f1e8c3 # v2 with: app-id: ${{ secrets.GH_APP_ID }} private-key: ${{ secrets.GH_APP_PRIV_KEY }} - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v5 with: token: ${{ steps.generate_token.outputs.token }} - name: Setup authentik env uses: ./.github/actions/setup - run: uv run ak update_webauthn_mds - uses: peter-evans/create-pull-request@5f6978faf089d4d20b00c7766989d076bb2fc7f1 # v7 id: cpr with: token: ${{ steps.generate_token.outputs.token }} branch: update-fido-mds-client commit-message: "stages/authenticator_webauthn: Update FIDO MDS3 & Passkey aaguid blobs" title: "stages/authenticator_webauthn: Update FIDO MDS3 & Passkey aaguid blobs" body: "stages/authenticator_webauthn: Update FIDO MDS3 & Passkey aaguid blobs" delete-branch: true signoff: true # ID from https://api.github.com/users/authentik-automation[bot] author: authentik-automation[bot] <135050075+authentik-automation[bot]@users.noreply.github.com> labels: dependencies - uses: peter-evans/enable-pull-request-automerge@a660677d5469627102a1c1e11409dd063606628d # v3 with: token: ${{ steps.generate_token.outputs.token }} pull-request-number: ${{ steps.cpr.outputs.pull-request-number }} merge-method: squash