Skip to content

Update GitHub Action Versions #195

Update GitHub Action Versions

Update GitHub Action Versions #195

Workflow file for this run

name: PR Agent
on:
workflow_call:
inputs:
dir:
required: false
type: string
secrets:
OPENAI_KEY:
required: false
GITHUB_TOKEN:

Check failure on line 12 in .github/workflows/pr-agent.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/pr-agent.yaml

Invalid workflow file

secret name `GITHUB_TOKEN` within `workflow_call` can not be used since it would collide with system reserved name
required: false
jobs:
pr_agent_job:
runs-on: ubuntu-latest
name: Run pr agent on every pull request, respond to user comments
steps:
- name: PR Agent action step
id: pragent
uses: Codium-ai/[email protected]
env:
OPENAI_KEY: ${{ secrets.OPENAI_KEY }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}