Skip to content

Commit b6329de

Browse files
committed
chore: repoint release assets to evalops
1 parent 4b4637e commit b6329de

9 files changed

Lines changed: 19 additions & 22 deletions

File tree

.github/workflows/diffscope.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
4040
- name: Run DiffScope
4141
if: steps.check_key.outputs.skip != 'true'
42-
uses: docker://ghcr.io/haasonsaas/diffscope:latest
42+
uses: docker://ghcr.io/evalops/diffscope:latest
4343
env:
4444
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
4545
with:

.github/workflows/release.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -36,18 +36,18 @@ jobs:
3636
body: |
3737
# DiffScope ${{ steps.get_version.outputs.VERSION }}
3838
39-
See [CHANGELOG.md](https://github.com/haasonsaas/diffscope/blob/main/CHANGELOG.md) for details.
39+
See [CHANGELOG.md](https://github.com/evalops/diffscope/blob/main/CHANGELOG.md) for details.
4040
4141
## 🚀 Installation
4242
4343
### Quick install (Linux/macOS):
4444
```bash
45-
curl -sSL https://raw.githubusercontent.com/haasonsaas/diffscope/main/install.sh | sh
45+
curl -sSL https://raw.githubusercontent.com/evalops/diffscope/main/install.sh | sh
4646
```
4747
4848
### Quick install (Windows):
4949
```powershell
50-
iwr -useb https://raw.githubusercontent.com/haasonsaas/diffscope/main/install.ps1 | iex
50+
iwr -useb https://raw.githubusercontent.com/evalops/diffscope/main/install.ps1 | iex
5151
```
5252
5353
### Manual installation:
@@ -239,21 +239,21 @@ jobs:
239239
cache-from: type=gha
240240
cache-to: type=gha,mode=max
241241
tags: |
242-
ghcr.io/haasonsaas/diffscope:latest
243-
ghcr.io/haasonsaas/diffscope:${{ steps.get_version.outputs.VERSION }}
242+
ghcr.io/evalops/diffscope:latest
243+
ghcr.io/evalops/diffscope:${{ steps.get_version.outputs.VERSION }}
244244
245245
- name: Install cosign
246246
uses: sigstore/cosign-installer@v3
247247

248248
- name: Sign image (keyless)
249249
env:
250-
IMAGE_REF: ghcr.io/haasonsaas/diffscope@${{ steps.build-and-push.outputs.digest }}
250+
IMAGE_REF: ghcr.io/evalops/diffscope@${{ steps.build-and-push.outputs.digest }}
251251
run: cosign sign --yes "${IMAGE_REF}"
252252

253253
- name: Generate SBOM
254254
uses: anchore/sbom-action@v0
255255
with:
256-
image: ghcr.io/haasonsaas/diffscope@${{ steps.build-and-push.outputs.digest }}
256+
image: ghcr.io/evalops/diffscope@${{ steps.build-and-push.outputs.digest }}
257257
format: spdx-json
258258
output-file: sbom-diffscope.spdx.json
259259

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ edition = "2021"
55
authors = ["Jonathan Haas <jonathan@haas.holdings>"]
66
description = "A composable code review engine with smart analysis, confidence scoring, and professional reporting"
77
license = "Apache-2.0"
8-
repository = "https://github.com/Haasonsaas/diffscope"
8+
repository = "https://github.com/evalops/diffscope"
99
keywords = ["code-review", "diff", "analysis", "cli", "security"]
1010
categories = ["development-tools", "command-line-utilities"]
1111

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ inputs:
2020

2121
runs:
2222
using: 'docker'
23-
image: 'docker://ghcr.io/haasonsaas/diffscope:latest'
23+
image: 'docker://ghcr.io/evalops/diffscope:latest'
2424
args:
2525
- review
2626
- '--model'

charts/diffscope/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ description: AI-powered code review engine with smart analysis and professional
44
type: application
55
version: 0.1.0
66
appVersion: "0.5.3"
7-
home: https://github.com/haasonsaas/diffscope
7+
home: https://github.com/evalops/diffscope
88
sources:
9-
- https://github.com/haasonsaas/diffscope
9+
- https://github.com/evalops/diffscope
1010
maintainers:
1111
- name: Jonathan Haas
1212
keywords:

charts/diffscope/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
replicaCount: 1
22

33
image:
4-
repository: ghcr.io/haasonsaas/diffscope
4+
repository: ghcr.io/evalops/diffscope
55
tag: "" # defaults to Chart.appVersion
66
pullPolicy: IfNotPresent
77

install.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# DiffScope Installation Script for Windows
2-
# Run with: iwr -useb https://raw.githubusercontent.com/haasonsaas/diffscope/main/install.ps1 | iex
2+
# Run with: iwr -useb https://raw.githubusercontent.com/evalops/diffscope/main/install.ps1 | iex
33

44
$ErrorActionPreference = "Stop"
55

6-
$REPO = "haasonsaas/diffscope"
6+
$REPO = "evalops/diffscope"
77
$INSTALL_DIR = "$env:LOCALAPPDATA\diffscope\bin"
88
$BINARY_NAME = "diffscope.exe"
99

install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
set -e
66

7-
REPO="haasonsaas/diffscope"
7+
REPO="evalops/diffscope"
88
INSTALL_DIR="${INSTALL_DIR:-/usr/local/bin}"
99
BINARY_NAME="diffscope"
1010

src/server/api.rs

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2180,7 +2180,7 @@ pub(super) async fn post_pr_review_comments(
21802180
));
21812181
}
21822182
review_body_text
2183-
.push_str("_Automated review by [DiffScope](https://github.com/haasonsaas/diffscope)_");
2183+
.push_str("_Automated review by [DiffScope](https://github.com/evalops/diffscope)_");
21842184

21852185
// Determine event type based on severity
21862186
let has_errors = comments
@@ -2331,7 +2331,7 @@ mod tests {
23312331
status: Some("failed".to_string()),
23322332
time_from: Some("2025-06-01T12:00:00Z".to_string()),
23332333
time_to: Some("2025-06-30T12:00:00Z".to_string()),
2334-
github_repo: Some("haasonsaas/diffscope".to_string()),
2334+
github_repo: Some("evalops/diffscope".to_string()),
23352335
limit: Some(100),
23362336
offset: Some(25),
23372337
};
@@ -2341,10 +2341,7 @@ mod tests {
23412341
assert_eq!(filters.status, Some("failed".to_string()));
23422342
assert!(filters.time_from.is_some());
23432343
assert!(filters.time_to.is_some());
2344-
assert_eq!(
2345-
filters.github_repo,
2346-
Some("haasonsaas/diffscope".to_string())
2347-
);
2344+
assert_eq!(filters.github_repo, Some("evalops/diffscope".to_string()));
23482345
assert_eq!(filters.limit, Some(100));
23492346
assert_eq!(filters.offset, Some(25));
23502347
}

0 commit comments

Comments
 (0)