Add Urdu Language Translation and Link in README (Fixes #3381) #445
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Presubmit.ai | |
| on: | |
| pull_request: | |
| types: [opened, synchronize, reopened] | |
| jobs: | |
| review: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check required secrets | |
| run: | | |
| if [ -z "${{ secrets.LLM_API_KEY }}" ]; then | |
| echo "Error: LLM_API_KEY secret is not configured" | |
| exit 1 | |
| fi | |
| - name: Run AI Reviewer | |
| uses: presubmit/ai-reviewer@latest | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| LLM_API_KEY: ${{ secrets.LLM_API_KEY }} | |
| LLM_PROVIDER: "openai" | |
| LLM_MODEL: "gpt-4-turbo" |