diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 15419cb..e4e5224 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -53,7 +53,7 @@ jobs: uses: docker/metadata-action@v5 with: # Specifies the name of the image. ghcr.io/${{ github.repository }} will be automatically - # converted to lowercase, e.g., ghcr.io/euclidstellar/code-review-agent. + # converted to lowercase, e.g., ghcr.io/keploy/code-review-agent. images: ghcr.io/${{ github.repository }} # The action automatically creates tags from the release version. # For a release 'v1.2.3', it will generate tags: 'v1.2.3', 'v1.2', 'v1', and 'latest'. diff --git a/.github/workflows/review.yml b/.github/workflows/review.yml index b907b3e..4054819 100644 --- a/.github/workflows/review.yml +++ b/.github/workflows/review.yml @@ -20,6 +20,6 @@ jobs: fetch-depth: 0 # Required to get the full git history for diffing - name: Run Smart AI Code Review - uses: euclidstellar/code-review-agent@v1 + uses: keploy/code-review-agent@v1 with: github-token: ${{ secrets.GH_SECRET }} diff --git a/LICENSE b/LICENSE index 05579ca..578e5ec 100644 --- a/LICENSE +++ b/LICENSE @@ -1,7 +1,7 @@ MIT License -Copyright (c) 2025 EuclidStellar +Copyright (c) 2025 Keploy Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/README.md b/README.md index f67464d..bfb5650 100644 --- a/README.md +++ b/README.md @@ -50,7 +50,7 @@ jobs: fetch-depth: 0 # Required to get the full git history for diffing - name: Run Smart AI Code Review - uses: euclidstellar/code-review-agent@v1 + uses: keploy/code-review-agent@v1 with: github-token: ${{ secrets.GH_TOKEN }} ``` @@ -80,7 +80,7 @@ jobs: fetch-depth: 0 - name: Run Smart AI Code Review - uses: euclidstellar/code-review-agent@v1 + uses: keploy/code-review-agent@v1 with: github-token: ${{ secrets.GH_TOKEN }} model: 'gpt-4o' diff --git a/action.yml b/action.yml index 9646e67..db12695 100644 --- a/action.yml +++ b/action.yml @@ -1,6 +1,6 @@ -name: 'KeployAI Code Review' +name: 'Keploy-AI Code Review' description: 'Provides automated, AI-powered code reviews on pull requests with a resilient fallback system using GitHub Models and Ollama.' -author: 'EuclidStellar' +author: 'Keploy' branding: icon: 'git-pull-request' @@ -47,4 +47,4 @@ outputs: runs: using: 'docker' - image: 'docker://ghcr.io/euclidstellar/code-review-agent:v1' + image: 'docker://ghcr.io/keploy/code-review-agent:v1' diff --git a/examples/workflow.yml b/examples/workflow.yml index 6b15fee..40e9602 100644 --- a/examples/workflow.yml +++ b/examples/workflow.yml @@ -18,6 +18,6 @@ jobs: fetch-depth: 0 # Required to get the full git history for diffing - name: Run Smart AI Code Review - uses: euclidstellar/code-review-agent@v1 + uses: keploy/code-review-agent@v1 with: github-token: ${{ secrets.GH_TOKEN }} diff --git a/go.mod b/go.mod index 6b9d6c3..738605e 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/euclidstellar/code-review-agent +module github.com/keploy/code-review-agent go 1.24.1 diff --git a/internal/reviewer/github_models.go b/internal/reviewer/github_models.go index d1355a5..7d8986e 100644 --- a/internal/reviewer/github_models.go +++ b/internal/reviewer/github_models.go @@ -7,7 +7,7 @@ import ( "io" "net/http" "strings" - "github.com/euclidstellar/code-review-agent/internal/config" + "github.com/keploy/code-review-agent/internal/config" ) diff --git a/main.go b/main.go index 8f0b756..9fcd174 100644 --- a/main.go +++ b/main.go @@ -8,11 +8,11 @@ import ( "os/exec" "strings" - "github.com/euclidstellar/code-review-agent/internal/config" - "github.com/euclidstellar/code-review-agent/internal/diff" - "github.com/euclidstellar/code-review-agent/internal/github" - "github.com/euclidstellar/code-review-agent/internal/reviewer" - "github.com/euclidstellar/code-review-agent/internal/utils" + "github.com/keploy/code-review-agent/internal/config" + "github.com/keploy/code-review-agent/internal/diff" + "github.com/keploy/code-review-agent/internal/github" + "github.com/keploy/code-review-agent/internal/reviewer" + "github.com/keploy/code-review-agent/internal/utils" ) func main() {