Skip to content
This repository was archived by the owner on Dec 27, 2025. It is now read-only.

Commit 81f2e70

Browse files
committed
chore: migrate organization from jsr-probitas to probitas-test
Organization rename affects multiple areas: - GitHub Actions workflows (test coverage, Homebrew tap automation) - README documentation and installation instructions - Docker Compose service image references - Example scenario API reference URLs - Dependency lock file updates This consolidates all references under the new probitas-test organization namespace while maintaining functional equivalence.
1 parent eac2f4c commit 81f2e70

19 files changed

+69
-52
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,4 +41,4 @@ jobs:
4141
with:
4242
files: ./coverage.lcov
4343
token: ${{ secrets.CODECOV_TOKEN }}
44-
slug: jsr-probitas/cli
44+
slug: probitas-test/cli

.github/workflows/update-homebrew.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,6 @@ jobs:
2020
uses: peter-evans/repository-dispatch@v3
2121
with:
2222
token: ${{ secrets.HOMEBREW_TAP_TOKEN }}
23-
repository: jsr-probitas/homebrew-tap
23+
repository: probitas-test/homebrew-tap
2424
event-type: update-formula
2525
client-payload: '{"ref": "${{ github.ref }}", "sha": "${{ github.sha }}"}'

README.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
# Probitas CLI
22

33
[![JSR](https://jsr.io/badges/@probitas/cli)](https://jsr.io/@probitas/cli)
4-
[![Test](https://github.com/jsr-probitas/cli/actions/workflows/test.yml/badge.svg)](https://github.com/jsr-probitas/cli/actions/workflows/test.yml)
5-
[![Publish](https://github.com/jsr-probitas/cli/actions/workflows/publish.yml/badge.svg)](https://github.com/jsr-probitas/cli/actions/workflows/publish.yml)
6-
[![codecov](https://codecov.io/gh/jsr-probitas/cli/graph/badge.svg)](https://codecov.io/gh/jsr-probitas/cli)
4+
[![Test](https://github.com/probitas-test/cli/actions/workflows/test.yml/badge.svg)](https://github.com/probitas-test/cli/actions/workflows/test.yml)
5+
[![Publish](https://github.com/probitas-test/cli/actions/workflows/publish.yml/badge.svg)](https://github.com/probitas-test/cli/actions/workflows/publish.yml)
6+
[![codecov](https://codecov.io/gh/probitas-test/cli/graph/badge.svg)](https://codecov.io/gh/probitas-test/cli)
77

88
Command-line interface for
9-
[Probitas](https://github.com/jsr-probitas/probitas) - a scenario-based testing
9+
[Probitas](https://github.com/probitas-test/probitas) - a scenario-based testing
1010
& workflow execution framework.
1111

1212
## Installation
@@ -16,7 +16,7 @@ Command-line interface for
1616
Requires [Deno](https://deno.land/) v2.x or later.
1717

1818
```bash
19-
curl -fsSL https://raw.githubusercontent.com/jsr-probitas/cli/main/install.sh | sh
19+
curl -fsSL https://raw.githubusercontent.com/probitas-test/cli/main/install.sh | sh
2020
```
2121

2222
**Environment variables:**
@@ -28,21 +28,21 @@ curl -fsSL https://raw.githubusercontent.com/jsr-probitas/cli/main/install.sh |
2828

2929
```bash
3030
# Install specific version
31-
curl -fsSL https://raw.githubusercontent.com/jsr-probitas/cli/main/install.sh | PROBITAS_VERSION=0.1.0 sh
31+
curl -fsSL https://raw.githubusercontent.com/probitas-test/cli/main/install.sh | PROBITAS_VERSION=0.1.0 sh
3232

3333
# Install to custom directory
34-
curl -fsSL https://raw.githubusercontent.com/jsr-probitas/cli/main/install.sh | PROBITAS_INSTALL_DIR=/usr/local sh
34+
curl -fsSL https://raw.githubusercontent.com/probitas-test/cli/main/install.sh | PROBITAS_INSTALL_DIR=/usr/local sh
3535
```
3636

3737
### Using Homebrew (macOS/Linux)
3838

3939
```bash
4040
# Add the tap and install
41-
brew tap jsr-probitas/tap
41+
brew tap probitas-test/tap
4242
brew install probitas
4343

4444
# Or install directly
45-
brew install jsr-probitas/tap/probitas
45+
brew install probitas-test/tap/probitas
4646
```
4747

4848
Deno is installed automatically as a dependency.
@@ -53,10 +53,10 @@ With [Nix](https://nixos.org/) and flakes enabled:
5353

5454
```bash
5555
# Run directly without installing
56-
nix run github:jsr-probitas/cli
56+
nix run github:probitas-test/cli
5757

5858
# Install to profile
59-
nix profile install github:jsr-probitas/cli
59+
nix profile install github:probitas-test/cli
6060
```
6161

6262
**Use in a flake (recommended):**
@@ -65,7 +65,7 @@ nix profile install github:jsr-probitas/cli
6565
{
6666
inputs = {
6767
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
68-
probitas.url = "github:jsr-probitas/cli";
68+
probitas.url = "github:probitas-test/cli";
6969
};
7070
7171
outputs = { nixpkgs, probitas, ... }:

assets/example.probitas.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
* - Simple validation with thrown errors
99
*
1010
* Documentation:
11-
* - For humans: https://jsr-probitas.github.io/documents/
12-
* - For AI: https://jsr-probitas.github.io/documents/index.md
11+
* - For humans: https://probitas-test.github.io/documents/
12+
* - For AI: https://probitas-test.github.io/documents/index.md
1313
*/
1414
import { scenario } from "jsr:@probitas/probitas@^0";
1515

assets/probitas.jsonc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Documentation:
2-
// - For humans: https://jsr-probitas.github.io/documents/docs/configuration
3-
// - For AI: https://jsr-probitas.github.io/documents/docs/configuration/index.md
2+
// - For humans: https://probitas-test.github.io/documents/docs/configuration
3+
// - For AI: https://probitas-test.github.io/documents/docs/configuration/index.md
44
{
55
// Glob patterns for scenario file discovery
66
"includes": [

assets/usage-check.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,4 @@ Examples:
2424
probitas check api/ # Check scenarios in api directory
2525
probitas check --include "e2e/**/*.probitas.ts"
2626

27-
Documentation: https://jsr-probitas.github.io/documents/
27+
Documentation: https://probitas-test.github.io/documents/

assets/usage-fmt.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,4 @@ Examples:
2424
probitas fmt api/ # Format scenarios in api directory
2525
probitas fmt --include "e2e/**/*.probitas.ts"
2626

27-
Documentation: https://jsr-probitas.github.io/documents/
27+
Documentation: https://probitas-test.github.io/documents/

assets/usage-lint.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,4 @@ Examples:
2525
probitas lint api/ # Lint scenarios in api directory
2626
probitas lint --include "e2e/**/*.probitas.ts"
2727

28-
Documentation: https://jsr-probitas.github.io/documents/
28+
Documentation: https://probitas-test.github.io/documents/

assets/usage-list.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,4 +76,4 @@ Examples:
7676
Note: Uses patterns from config file or defaults to "**/*.probitas.ts"
7777
.env file is automatically loaded before scenario listing (use --no-env to skip)
7878

79-
Documentation: https://jsr-probitas.github.io/documents/
79+
Documentation: https://probitas-test.github.io/documents/

assets/usage-run.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,4 +107,4 @@ Environment Variables:
107107
NO_COLOR Disable colored output
108108
.env File: Automatically loaded before scenario execution (use --no-env to skip)
109109

110-
Documentation: https://jsr-probitas.github.io/documents/
110+
Documentation: https://probitas-test.github.io/documents/

0 commit comments

Comments
 (0)