Skip to content

Add Urdu Language Translation and Link in README (Fixes #3381) #443

Add Urdu Language Translation and Link in README (Fixes #3381)

Add Urdu Language Translation and Link in README (Fixes #3381) #443

Workflow file for this run

name: Presubmit.ai

Check failure on line 1 in .github/workflows/presubmit.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/presubmit.yml

Invalid workflow file

(Line: 29, Col: 9): There's not enough info to determine what you meant. Add one of these properties: run, shell, uses, with, working-directory, (Line: 30, Col: 9): Unexpected value 'presubmit/ai-reviewer@latest', (Line: 32, Col: 5): Unexpected value 'GITHUB_TOKEN', (Line: 33, Col: 5): Unexpected value 'LLM_API_KEY', (Line: 34, Col: 5): Unexpected value 'LLM_PROVIDER', (Line: 35, Col: 5): Unexpected value 'LLM_MODEL', (Line: 32, Col: 5): There's not enough info to determine what you meant. Add one of these properties: cancel-timeout-minutes, container, continue-on-error, defaults, env, environment, outputs, runs-on, secrets, services, snapshot, steps, timeout-minutes, uses, with
permissions:
contents: read
pull-requests: write
issues: write
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: Check out PR code
uses: actions/checkout@v3
with:
ref: ${{ github.event.pull_request.head.sha }}
- 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"