From bf863f7be29ad0bec29daca79ad3ab2fda568ccf Mon Sep 17 00:00:00 2001 From: Silen Naihin Date: Tue, 25 Jul 2023 19:09:08 +0100 Subject: [PATCH] adding Codium pr-agent --- .github/workflows/pr_agent.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/workflows/pr_agent.yml diff --git a/.github/workflows/pr_agent.yml b/.github/workflows/pr_agent.yml new file mode 100644 index 00000000..22776417 --- /dev/null +++ b/.github/workflows/pr_agent.yml @@ -0,0 +1,14 @@ +on: + pull_request: + issue_comment: +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/pr-agent@main + env: + OPENAI_KEY: ${{ secrets.OPENAI_API_KEY }} + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}