mirror of
https://github.com/hyprwm/Hyprland
synced 2025-12-26 21:30:17 +01:00
CI/AI translate: expose output
This commit is contained in:
parent
b5a2ef77b7
commit
d66c9222b0
1 changed files with 3 additions and 1 deletions
4
.github/workflows/translation-ai-check.yml
vendored
4
.github/workflows/translation-ai-check.yml
vendored
|
|
@ -18,6 +18,8 @@ jobs:
|
|||
name: Check i18n changes
|
||||
if: ${{ github.event_name == 'pull_request_target' || (github.event_name == 'issue_comment' && github.event.action == 'created' && github.event.issue.pull_request != null && github.event.comment.user.login == 'vaxerski' && github.event.comment.body == 'ai, please recheck' ) }}
|
||||
runs-on: ubuntu-latest
|
||||
outputs:
|
||||
exists: ${{ steps.changes.outputs.exists }}
|
||||
steps:
|
||||
- name: Checkout source code
|
||||
uses: actions/checkout@v5
|
||||
|
|
@ -31,7 +33,7 @@ jobs:
|
|||
review:
|
||||
name: Review Translation
|
||||
needs: changes
|
||||
if: ${{ needs.changes.outputs.exists == 'true' }}
|
||||
if: needs.changes.outputs.exists == 'true'
|
||||
runs-on: ubuntu-latest
|
||||
env:
|
||||
OPENAI_MODEL: gpt-5-mini
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue