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
4 changes: 2 additions & 2 deletions RELEASING.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ with the changelog link last:

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

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

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

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

Expand Down
2 changes: 1 addition & 1 deletion bin/cli.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -1010,7 +1010,7 @@ function printNextSteps(agent) {
`prerequisite: install the ${codeplain("codeplain")} CLI to render your specs into code — ${link("https://www.codeplain.ai/")}`,
);
console.log(
`usage guide: ${link("https://github.com/Codeplain-ai/plain-forge#usage")}`,
`usage guide: ${link("https://github.com/plainlang/plain-forge#usage")}`,
);
console.log();
}
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@
},
"repository": {
"type": "git",
"url": "git+https://github.com/Codeplain-ai/plain-forge.git"
"url": "git+https://github.com/plainlang/plain-forge.git"
},
"homepage": "https://github.com/Codeplain-ai/plain-forge",
"homepage": "https://github.com/plainlang/plain-forge",
"bugs": {
"url": "https://github.com/Codeplain-ai/plain-forge/issues"
"url": "https://github.com/plainlang/plain-forge/issues"
},
"license": "MIT",
"keywords": [
Expand Down
2 changes: 1 addition & 1 deletion scripts/deploy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ set -euo pipefail

PKG="plain-forge"
ENVIRONMENT="npm"
REPO="Codeplain-ai/plain-forge"
REPO="plainlang/plain-forge"

TAG=""
DRY_RUN=false
Expand Down
Loading