From 312229c8d44ab20c462733c84213b848d9eafa35 Mon Sep 17 00:00:00 2001 From: geoffsee <> Date: Mon, 30 Jun 2025 18:03:20 -0400 Subject: [PATCH] test code review action --- .github/workflows/code_review.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .github/workflows/code_review.yml diff --git a/.github/workflows/code_review.yml b/.github/workflows/code_review.yml new file mode 100644 index 0000000..1295746 --- /dev/null +++ b/.github/workflows/code_review.yml @@ -0,0 +1,24 @@ +name: Code Review + +permissions: + pull-requests: write + statuses: write + checks: write + contents: read + actions: read + +on: + workflow_dispatch: + push: + branches: [ci-dev] + +jobs: + code_review: + permissions: + contents: read + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: geoffsee/toakinize@v1 + env: + OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }} \ No newline at end of file