This repository has been archived by the owner on Sep 13, 2023. It is now read-only.
Add CORS Middleware to Resolve XMLHttpRequest Error #50
This file contains 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: PR Agent Workflow | |
permissions: | |
issues: write | |
pull-requests: write | |
on: | |
pull_request: | |
issue_comment: | |
jobs: | |
pr_agent_job: | |
permissions: write-all | |
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/pr-agent@main | |
env: | |
OPENAI_KEY: ${{ secrets.OPENAI_API_KEY }} | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |