1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-08-18 13:48:58 +02:00

chore: new attempt

This commit is contained in:
Nuno Góis 2025-07-02 13:16:21 +01:00
parent bea7c80401
commit f9e1e4b4a4
No known key found for this signature in database
GPG Key ID: 71ECC689F1091765
2 changed files with 9 additions and 2 deletions

View File

@ -29,6 +29,10 @@ on:
api_key_env_value:
description: "The API key"
required: true
UNLEASH_BOT_APP_ID:
required: true
UNLEASH_BOT_PRIVATE_KEY:
required: true
permissions:
pull-requests: write
@ -44,8 +48,9 @@ jobs:
id: app_token
uses: actions/create-github-app-token@v2
with:
app-id: 1234
app-id: ${{ secrets.UNLEASH_BOT_APP_ID }}
private-key: ${{ secrets.UNLEASH_BOT_PRIVATE_KEY }}
owner: ${{ github.repository_owner }}
repositories: ${{ github.repository }}

View File

@ -21,4 +21,6 @@ jobs:
model: gemini
api_key_env_name: GEMINI_API_KEY
secrets:
api_key_env_value: ${{ secrets.GEMINI_API_KEY }}
api_key_env_value: ${{ secrets.GEMINI_API_KEY }}
UNLEASH_BOT_APP_ID: ${{ secrets.UNLEASH_BOT_APP_ID }}
UNLEASH_BOT_PRIVATE_KEY: ${{ secrets.UNLEASH_BOT_PRIVATE_KEY }}