Skip to content

Commit 86ef235

Browse files
committed
chore: Fix github links
1 parent 1e8eff4 commit 86ef235

File tree

9 files changed

+25
-25
lines changed

9 files changed

+25
-25
lines changed

.github/workflows/main.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,17 +8,17 @@ on:
88
jobs:
99
run_checks:
1010
name: Run code checks
11-
uses: spuxx1701/ci-cd/.github/workflows/pnpm_run_checks.yml@v4.1.0
11+
uses: spuxx-dev/ci-cd/.github/workflows/pnpm_run_checks.yml@v4.1.0
1212

1313
run_unit_tests:
1414
name: Run tests (vitest)
15-
uses: spuxx1701/ci-cd/.github/workflows/pnpm_run_tests_vitest.yml@v4.1.0
15+
uses: spuxx-dev/ci-cd/.github/workflows/pnpm_run_tests_vitest.yml@v4.1.0
1616
with:
1717
COVERAGE_DISABLE: true
1818

1919
staging_spuxx_api:
2020
name: Release artifact (spuxx-api)
21-
uses: spuxx1701/ci-cd/.github/workflows/pnpm_build_and_push.yml@v4.1.0
21+
uses: spuxx-dev/ci-cd/.github/workflows/pnpm_build_and_push.yml@v4.1.0
2222
needs:
2323
- run_checks
2424
- run_unit_tests
@@ -32,7 +32,7 @@ jobs:
3232

3333
staging_toledo:
3434
name: Release artifact (toledo)
35-
uses: spuxx1701/ci-cd/.github/workflows/pnpm_build_and_push.yml@v4.1.0
35+
uses: spuxx-dev/ci-cd/.github/workflows/pnpm_build_and_push.yml@v4.1.0
3636
needs:
3737
- run_checks
3838
- run_unit_tests
@@ -45,7 +45,7 @@ jobs:
4545

4646
run_release_please:
4747
name: Run release-please
48-
uses: spuxx1701/ci-cd/.github/workflows/pnpm_release-please.yml@v4.1.0
48+
uses: spuxx-dev/ci-cd/.github/workflows/pnpm_release-please.yml@v4.1.0
4949
needs:
5050
- run_checks
5151
- run_unit_tests

.github/workflows/pull_request.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ on:
88
jobs:
99
run_checks:
1010
name: Run code checks
11-
uses: spuxx1701/ci-cd/.github/workflows/pnpm_run_checks.yml@v4.1.0
11+
uses: spuxx-dev/ci-cd/.github/workflows/pnpm_run_checks.yml@v4.1.0
1212

1313
run_unit_tests:
1414
name: Run tests (vitest)
15-
uses: spuxx1701/ci-cd/.github/workflows/pnpm_run_tests_vitest.yml@v4.1.0
15+
uses: spuxx-dev/ci-cd/.github/workflows/pnpm_run_tests_vitest.yml@v4.1.0
1616
with:
1717
COVERAGE_DISABLE: true

.github/workflows/release_spuxx_astro.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
jobs:
1010
release:
1111
name: Release artifact (spuxx-astro)
12-
uses: spuxx1701/ci-cd/.github/workflows/pnpm_build_and_push.yml@v4.1.0
12+
uses: spuxx-dev/ci-cd/.github/workflows/pnpm_build_and_push.yml@v4.1.0
1313
with:
1414
tag: version
1515
latest: true

apps/spuxx-api/README.md

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

1616
## <a name='Setup'></a>Setup
1717

18-
1. Clone the repository: `git clone https://github.com/spuxx1701/spuxx-dev-mono.git`
18+
1. Clone the repository: `git clone https://github.com/spuxx-dev/spuxx-dev-mono.git`
1919
2. Navigate to the project directory: `cd spuxx-dev-mono` and run `pnpm -r i`
2020
3. Create a `.env` file in the root directory and add the necessary environment variables (see [here](src/env/env.module.ts)).
2121
4. Run the application: `pnpm dev:api`.

apps/spuxx-api/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"url": "https://spuxx.dev"
88
},
99
"repository": {
10-
"url": "https://github.com/spuxx1701/spuxx-dev-mono",
10+
"url": "https://github.com/spuxx-dev/spuxx-dev-mono",
1111
"directory": "apps/spuxx-api",
1212
"type": "git"
1313
},

apps/spuxx-api/src/app.controller.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ export class AppController {
2222
? `Logged in as ${getSession(request).preferred_username}.`
2323
: 'Not logged in.',
2424
author: appConfig.author,
25-
repository: 'https://github.com/spuxx1701/spuxx-dev-mono',
25+
repository: 'https://github.com/spuxx-dev/spuxx-dev-mono',
2626
auth: {
2727
login: `${EnvModule.get('APP_BASE_URL')}/auth/login`,
2828
logout: `${EnvModule.get('APP_BASE_URL')}/auth/logout`,

apps/spuxx-astro/CHANGELOG.md

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

3-
## [1.3.0](https://github.com/spuxx1701/spuxx-dev-mono/compare/spuxx-astro-v1.2.0...spuxx-astro-v1.3.0) (2024-10-06)
3+
## [1.3.0](https://github.com/spuxx-dev/spuxx-dev-mono/compare/spuxx-astro-v1.2.0...spuxx-astro-v1.3.0) (2024-10-06)
44

55

66
### Features
77

8-
* Rephrased a heading ([595934c](https://github.com/spuxx1701/spuxx-dev-mono/commit/595934cfb43ac2141303be48003654539e8e2703))
9-
* Rephrased a title ([6afe3b6](https://github.com/spuxx1701/spuxx-dev-mono/commit/6afe3b6e939e3a0da10c003ca5c6e9e7a259a69a))
8+
* Rephrased a heading ([595934c](https://github.com/spuxx-dev/spuxx-dev-mono/commit/595934cfb43ac2141303be48003654539e8e2703))
9+
* Rephrased a title ([6afe3b6](https://github.com/spuxx-dev/spuxx-dev-mono/commit/6afe3b6e939e3a0da10c003ca5c6e9e7a259a69a))
1010

1111

1212
### Bug Fixes
1313

14-
* Improved rust tech card readability ([18980a3](https://github.com/spuxx1701/spuxx-dev-mono/commit/18980a3cc78dd1d0f1f11d4cab4445726bdda5c2))
14+
* Improved rust tech card readability ([18980a3](https://github.com/spuxx-dev/spuxx-dev-mono/commit/18980a3cc78dd1d0f1f11d4cab4445726bdda5c2))
1515

16-
## [1.2.0](https://github.com/spuxx1701/spuxx-dev-mono/compare/spuxx-astro-v1.1.0...spuxx-astro-v1.2.0) (2024-10-06)
16+
## [1.2.0](https://github.com/spuxx-dev/spuxx-dev-mono/compare/spuxx-astro-v1.1.0...spuxx-astro-v1.2.0) (2024-10-06)
1717

1818

1919
### Features
2020

21-
* Update header titles uwu ([3cddf36](https://github.com/spuxx1701/spuxx-dev-mono/commit/3cddf36b07b480b76a3e9dc1cffecb5e22770c99))
21+
* Update header titles uwu ([3cddf36](https://github.com/spuxx-dev/spuxx-dev-mono/commit/3cddf36b07b480b76a3e9dc1cffecb5e22770c99))
2222

23-
## [1.1.0](https://github.com/spuxx1701/spuxx-dev-mono/compare/spuxx-astro-v1.0.0...spuxx-astro-v1.1.0) (2024-10-06)
23+
## [1.1.0](https://github.com/spuxx-dev/spuxx-dev-mono/compare/spuxx-astro-v1.0.0...spuxx-astro-v1.1.0) (2024-10-06)
2424

2525

2626
### Features
2727

28-
* Moved spuxx-astro into monorepo and renamed project ([98dc34e](https://github.com/spuxx1701/spuxx-dev-mono/commit/98dc34ef2852089d007e83d686067f1558e4d667))
29-
* Update tech showcase ([fc4803c](https://github.com/spuxx1701/spuxx-dev-mono/commit/fc4803c6fd55f14365fdc448611da1551b084c5a))
30-
* Update text ([ce0076c](https://github.com/spuxx1701/spuxx-dev-mono/commit/ce0076c0817c4f7dc62ffb5803283a90e1907619))
31-
* Updated root page ([88c309a](https://github.com/spuxx1701/spuxx-dev-mono/commit/88c309a37d8c96ee843dc31c293445067de1716e))
28+
* Moved spuxx-astro into monorepo and renamed project ([98dc34e](https://github.com/spuxx-dev/spuxx-dev-mono/commit/98dc34ef2852089d007e83d686067f1558e4d667))
29+
* Update tech showcase ([fc4803c](https://github.com/spuxx-dev/spuxx-dev-mono/commit/fc4803c6fd55f14365fdc448611da1551b084c5a))
30+
* Update text ([ce0076c](https://github.com/spuxx-dev/spuxx-dev-mono/commit/ce0076c0817c4f7dc62ffb5803283a90e1907619))
31+
* Updated root page ([88c309a](https://github.com/spuxx-dev/spuxx-dev-mono/commit/88c309a37d8c96ee843dc31c293445067de1716e))
3232

3333

3434
### Bug Fixes
3535

36-
* Fixed typo ([631191a](https://github.com/spuxx1701/spuxx-dev-mono/commit/631191ad5389bea06b386e83424823f462ab361a))
36+
* Fixed typo ([631191a](https://github.com/spuxx-dev/spuxx-dev-mono/commit/631191ad5389bea06b386e83424823f462ab361a))

apps/spuxx-astro/src/components/app/Header.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import HeaderLink from './HeaderLink.astro';
1313
title="totally not twitter"
1414
/>
1515
<HeaderLink
16-
href="https://github.com/spuxx1701"
16+
href="https://github.com/spuxx-dev"
1717
target="_blank"
1818
icon="mdi:github"
1919
title="where the code at"

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"email": "hi@spuxx.dev",
1111
"url": "https://spuxx.dev"
1212
},
13-
"homepage": "https://github.com/spuxx1701/spuxx-dev-mono",
13+
"homepage": "https://github.com/spuxx-dev/spuxx-dev-mono",
1414
"packageManager": "pnpm@9.6.0",
1515
"scripts": {
1616
"dev:astro": "cd apps/spuxx-astro && pnpm dev",

0 commit comments

Comments
 (0)