Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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'.
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/review.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -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
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
```
Expand Down Expand Up @@ -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'
Expand Down
6 changes: 3 additions & 3 deletions action.yml
Original file line number Diff line number Diff line change
@@ -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'
Expand Down Expand Up @@ -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'
2 changes: 1 addition & 1 deletion examples/workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/euclidstellar/code-review-agent
module github.com/keploy/code-review-agent

go 1.24.1

Expand Down
2 changes: 1 addition & 1 deletion internal/reviewer/github_models.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
)


Expand Down
10 changes: 5 additions & 5 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -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() {
Expand Down
Loading