From 8aa02cad7153c1b9c6e48d6a8bd2eef38f7ab94f Mon Sep 17 00:00:00 2001 From: Tony Wu Date: Thu, 31 Oct 2024 11:43:12 -0400 Subject: [PATCH] ci(codium): Add codium agent to PRs for MSstats --- .github/workflows/codium-pr-agent.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/codium-pr-agent.yml diff --git a/.github/workflows/codium-pr-agent.yml b/.github/workflows/codium-pr-agent.yml new file mode 100644 index 0000000..100c3f0 --- /dev/null +++ b/.github/workflows/codium-pr-agent.yml @@ -0,0 +1,18 @@ +on: + pull_request: + types: [opened] +jobs: + pr_agent_job: + if: ${{ github.event.sender.type != 'Bot' }} + runs-on: ubuntu-latest + permissions: + pull-requests: write + contents: read + name: Run pr agent on every pull request + steps: + - name: PR Agent action step + id: pragent + uses: Codium-ai/pr-agent@main + env: + OPENAI_KEY: ${{ secrets.MSSTATS_OPENAI_KEY }} + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file