Skip to content

Commit bea47e2

Browse files
committed
Point repo references at UsefulSoftwareCo after org transfer
1 parent 9bbf5d4 commit bea47e2

59 files changed

Lines changed: 114 additions & 106 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.changeset/config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"$schema": "https://unpkg.com/@changesets/config@3.1.3/schema.json",
3-
"changelog": ["@changesets/changelog-github", { "repo": "RhysSullivan/executor" }],
3+
"changelog": ["@changesets/changelog-github", { "repo": "UsefulSoftwareCo/executor" }],
44
"commit": false,
55
"fixed": [
66
[

.github/ISSUE_TEMPLATE/desktop-crash.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ body:
77
attributes:
88
value: |
99
Before filing, please try the quick fixes in the pinned
10-
**[Desktop app crashing? Start here](https://github.com/RhysSullivan/executor/issues?q=is%3Aissue+label%3Acrash-triage)**
10+
**[Desktop app crashing? Start here](https://github.com/UsefulSoftwareCo/executor/issues?q=is%3Aissue+label%3Acrash-triage)**
1111
guide — most crashes are fixed by updating to the latest version.
1212
If you're still stuck, the details below help us pin it down fast.
1313
- type: input

.skills/cli-release/SKILL.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ Identical to beta except skip `release:beta:start`/`stop`. Changesets produce a
104104
- **Never commit until the owner explicitly says so.** Set everything up in the working tree, run `git status`, and stop.
105105
- **No AI / Claude / Anthropic / Co-Authored-By trailers** in commits, commit messages, PRs, or any generated file. This is in `CLAUDE.md` — do not violate.
106106
- **Branch naming**: `rs/<short-topic>` for Rhys's branches. Beta-start branch: `rs/beta-v<version>-start`.
107-
- **Remote**: `origin` = `https://github.com/RhysSullivan/executor.git`. If another remote appears (e.g. a fork remote), ask whether to remove it.
107+
- **Remote**: `origin` = `https://github.com/UsefulSoftwareCo/executor.git`. If another remote appears (e.g. a fork remote), ask whether to remove it.
108108
- **Dirty working tree**: if there are uncommitted changes when starting a release, ask whether to include them, stash them, or commit separately first. Don't sweep them into the release commit silently.
109109
- **Don't estimate time** — code is cheap to write. Focus on what to do, not how long it takes.
110110
- **Fact-check scope claims** before publishing. If release notes say "does not affect X", verify by reading the diff.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ The browser e2e scenarios need Playwright's Chromium once per machine:
225225
## Community
226226

227227
Join the [Discord](https://discord.gg/eF29HBHwM6). To learn more, visit
228-
[executor.sh](https://executor.sh) or [Ask DeepWiki](https://deepwiki.com/RhysSullivan/executor).
228+
[executor.sh](https://executor.sh) or [Ask DeepWiki](https://deepwiki.com/UsefulSoftwareCo/executor).
229229

230230
## License
231231

RELEASING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ the self-host Docker image.
2424
- creates or updates the GitHub release with build artifacts
2525
- dispatches `.github/workflows/publish-desktop.yml`
2626
- dispatches `.github/workflows/publish-selfhost-docker.yml`
27-
6. The self-host Docker workflow publishes `ghcr.io/rhyssullivan/executor-selfhost`
27+
6. The self-host Docker workflow publishes `ghcr.io/usefulsoftwareco/executor-selfhost`
2828
for `linux/amd64` and `linux/arm64`:
2929
- stable releases get `vX.Y.Z`, `X.Y.Z`, and `latest`
3030
- prereleases get `vX.Y.Z-...`, `X.Y.Z-...`, and `beta`

apps/cloud/src/web/components/support-options.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ const supportLinks = [
1313
{ label: "Discord", href: "https://discord.gg/eF29HBHwM6", icon: DiscordMark },
1414
{
1515
label: "GitHub Issues",
16-
href: "https://github.com/RhysSullivan/executor/issues",
16+
href: "https://github.com/UsefulSoftwareCo/executor/issues",
1717
icon: GitHubMark,
1818
},
1919
{ label: "Email", href: "mailto:rhys@executor.sh?subject=Executor%20support", icon: MailMark },

apps/desktop/electron-builder.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ const config: Configuration = {
5757
},
5858
publish: {
5959
provider: "github",
60-
owner: "RhysSullivan",
60+
owner: "UsefulSoftwareCo",
6161
repo: "executor",
6262
},
6363
};

apps/desktop/electron.vite.config.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,9 @@ export default defineConfig({
5353
"import.meta.env.VITE_APP_VERSION": JSON.stringify(
5454
process.env.npm_package_version ?? "0.0.0",
5555
),
56-
"import.meta.env.VITE_GITHUB_URL": JSON.stringify("https://github.com/RhysSullivan/executor"),
56+
"import.meta.env.VITE_GITHUB_URL": JSON.stringify(
57+
"https://github.com/UsefulSoftwareCo/executor",
58+
),
5759
"import.meta.env.VITE_EXECUTOR_CIMD_CLIENT_ID_METADATA_BASE_URL": JSON.stringify(
5860
process.env.EXECUTOR_CIMD_CLIENT_ID_METADATA_BASE_URL ?? "https://executor.sh",
5961
),

apps/desktop/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "@executor-js/desktop",
33
"version": "1.5.27",
44
"private": true,
5-
"homepage": "https://github.com/RhysSullivan/executor",
5+
"homepage": "https://github.com/UsefulSoftwareCo/executor",
66
"license": "MIT",
77
"type": "module",
88
"main": "./out/main/index.js",

apps/desktop/src/main/diagnostics.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,7 @@ export const reportAProblem = async () => {
259259
"",
260260
"_A diagnostics zip was saved to your Downloads folder — please drag it into this issue._",
261261
].join("\n");
262-
const url = new URL("https://github.com/RhysSullivan/executor/issues/new");
262+
const url = new URL("https://github.com/UsefulSoftwareCo/executor/issues/new");
263263
url.searchParams.set("title", "[desktop] ");
264264
url.searchParams.set("body", body);
265265
await shell.openExternal(url.toString());

0 commit comments

Comments
 (0)