Skip to content

Commit 73db023

Browse files
committed
chore: point repo references at the plainlang org
The GitHub organization moved from Codeplain-ai to plainlang, so every hardcoded `Codeplain-ai/plain-forge` string is now stale. - package.json: repository.url, homepage, bugs.url — these ship inside the published tarball and drive the npm page's Repository link. - bin/cli.mjs: the usage-guide link printed after install. - scripts/deploy.sh: REPO, used by the workstation-publish path for the release lookup and the Deployments API call. - RELEASING.md: the changelog-link template and the trusted-publisher row. .github/workflows/publish.yml needs no change: it never hardcodes the org, reaching for github.repository and github.server_url instead, and auth is OIDC. The npm trusted-publisher entry has already been repointed. The RELEASING.md link to Codeplain-ai/codeplain is left as-is — that repo has not moved.
1 parent 0118cd0 commit 73db023

4 files changed

Lines changed: 7 additions & 7 deletions

File tree

RELEASING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ with the changelog link last:
8484

8585
- Refactors, CI, dependencies — things that don't change behaviour for users.
8686

87-
**Full Changelog**: https://github.com/Codeplain-ai/plain-forge/compare/v1.0.20...v1.0.21
87+
**Full Changelog**: https://github.com/plainlang/plain-forge/compare/v1.0.20...v1.0.21
8888
```
8989

9090
Editing a release afterwards fires `release: edited`, not `published`, so fixing typos
@@ -114,7 +114,7 @@ at the repo root — gitignored, and the only place a webhook should live locall
114114

115115
| what | where | note |
116116
|---|---|---|
117-
| Trusted publisher | npmjs.com → `plain-forge` → Settings → Trusted Publisher | GitHub Actions, `Codeplain-ai/plain-forge`, workflow `publish.yml` |
117+
| Trusted publisher | npmjs.com → `plain-forge` → Settings → Trusted Publisher | GitHub Actions, `plainlang/plain-forge`, workflow `publish.yml` |
118118
| `SLACK_WEBHOOK_URL` | repo secret | the only secret this repo has; notifications are skipped without it |
119119
| Branch protection | `main` | `Test (node 18 / 20 / 22)` required, no force pushes, no deletion |
120120

bin/cli.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1010,7 +1010,7 @@ function printNextSteps(agent) {
10101010
`prerequisite: install the ${codeplain("codeplain")} CLI to render your specs into code — ${link("https://www.codeplain.ai/")}`,
10111011
);
10121012
console.log(
1013-
`usage guide: ${link("https://github.com/Codeplain-ai/plain-forge#usage")}`,
1013+
`usage guide: ${link("https://github.com/plainlang/plain-forge#usage")}`,
10141014
);
10151015
console.log();
10161016
}

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@
88
},
99
"repository": {
1010
"type": "git",
11-
"url": "git+https://github.com/Codeplain-ai/plain-forge.git"
11+
"url": "git+https://github.com/plainlang/plain-forge.git"
1212
},
13-
"homepage": "https://github.com/Codeplain-ai/plain-forge",
13+
"homepage": "https://github.com/plainlang/plain-forge",
1414
"bugs": {
15-
"url": "https://github.com/Codeplain-ai/plain-forge/issues"
15+
"url": "https://github.com/plainlang/plain-forge/issues"
1616
},
1717
"license": "MIT",
1818
"keywords": [

scripts/deploy.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ set -euo pipefail
2323

2424
PKG="plain-forge"
2525
ENVIRONMENT="npm"
26-
REPO="Codeplain-ai/plain-forge"
26+
REPO="plainlang/plain-forge"
2727

2828
TAG=""
2929
DRY_RUN=false

0 commit comments

Comments
 (0)