We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7543860 commit 04d5e07Copy full SHA for 04d5e07
1 file changed
.github/workflows/sync-secrets-to-aiui.yml
@@ -10,9 +10,17 @@ jobs:
10
sync:
11
runs-on: ubuntu-latest
12
steps:
13
+ - name: Generate GitHub App Token
14
+ id: app-token
15
+ uses: actions/create-github-app-token@v1
16
+ with:
17
+ app-id: ${{ secrets.CLAUDE_APP_ID }}
18
+ private-key: ${{ secrets.CLAUDE_APP_PRIVATE_KEY }}
19
+ owner: MervinPraison
20
+
21
- name: Sync secrets to PraisonAIUI
22
env:
- GH_TOKEN: ${{ secrets.SECRETS_ADMIN_PAT || secrets.GH_TOKEN }}
23
+ GH_TOKEN: ${{ steps.app-token.outputs.token }}
24
TARGET: MervinPraison/PraisonAIUI
25
CLAUDE_APP_ID: ${{ secrets.CLAUDE_APP_ID }}
26
CLAUDE_APP_PRIVATE_KEY: ${{ secrets.CLAUDE_APP_PRIVATE_KEY }}
0 commit comments