feat(CI 工作流程): 新增 AI 程式碼審查步驟
CI / 1. BUILD (pull_request) Successful in 2s
CI / 2. TEST (pull_request) Successful in 36s
CI / 3. RESULT (pull_request) Has been skipped

This commit is contained in:
2026-07-11 06:27:06 +00:00
parent 91f012e7a1
commit 73edbfcc17
+10
View File
@@ -38,6 +38,16 @@ jobs:
uses: https://gitea.jsc.idv.tw/actions/calculate-version@v${{ env.VERSION }} uses: https://gitea.jsc.idv.tw/actions/calculate-version@v${{ env.VERSION }}
with: with:
is_beta: ${{ env.IS_BETA == "true" }} is_beta: ${{ env.IS_BETA == "true" }}
- name: Setup LLM CLI
uses: https://gitea.jsc.idv.tw/actions/setup-${{ vars.ACTION_SETUP_LLM_CLI }}
with:
oauth: ${{ secrets.LLM_OAUTH }}
- name: Run AI Code Review
id: ai-code-review
uses: https://gitea.jsc.idv.tw/actions/ai-code-review@${{ vars.ACTION_AI_CODE_REVIEW_VERSION }}
with:
token: ${{ secrets.TOKEN }}
model: ${{ vars.LLM_NAME }}
result: result:
name: 3. RESULT name: 3. RESULT
runs-on: ubuntu runs-on: ubuntu