Skip to content

Commit 23d2f87

Browse files
authored
fix: repo name changed (commaai#606)
1 parent 89551e5 commit 23d2f87

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

.github/workflows/build.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ jobs:
6060
name: build-artifacts-${{ github.run_id }}
6161

6262
- name: Deploy to Cloudflare Pages
63-
if: github.ref == 'refs/heads/master' && github.repository == 'commaai/connect'
63+
if: github.ref == 'refs/heads/master' && github.repository == 'commaai/new-connect'
6464
uses: cloudflare/wrangler-action@v3
6565
with:
6666
accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
@@ -79,7 +79,7 @@ jobs:
7979
uses: docker/setup-buildx-action@v2
8080

8181
- uses: docker/login-action@v3
82-
if: github.ref == 'refs/heads/master' && github.repository == 'commaai/connect'
82+
if: github.ref == 'refs/heads/master' && github.repository == 'commaai/new-connect'
8383
with:
8484
registry: ghcr.io
8585
username: ${{ github.actor }}
@@ -111,6 +111,6 @@ jobs:
111111
SENTRY_RELEASE=${{ github.event_name == 'push' && github.sha || github.event.pull_request.head.sha }}
112112
builder: ${{ steps.buildx.outputs.name }}
113113
context: .
114-
push: ${{ github.ref == 'refs/heads/master' && github.repository == 'commaai/connect' }}
114+
push: ${{ github.ref == 'refs/heads/master' && github.repository == 'commaai/new-connect' }}
115115
tags: ${{ steps.meta.outputs.tags }}
116116
labels: ${{ steps.meta.outputs.labels }}

.github/workflows/diff.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
- name: Check whether branch is up-to-date
2525
id: status
2626
run: |
27-
git remote add commaai https://github.com/commaai/connect.git
27+
git remote add commaai https://github.com/commaai/new-connect.git
2828
git fetch commaai master
2929
echo "${{ github.event.pull_request.head.sha }}"
3030
git rev-list --left-right --count commaai/master...${{ github.event.pull_request.head.sha }} | awk '{print "Behind "$1" - Ahead "$2""}'

.github/workflows/preview.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
runs-on: ubuntu-latest
2222
outputs:
2323
number: ${{ steps.pr.outputs.number }}
24-
if: github.repository == 'commaai/connect' && github.event.workflow_run.event == 'pull_request'
24+
if: github.repository == 'commaai/new-connect' && github.event.workflow_run.event == 'pull_request'
2525
steps:
2626
# use `gr pr view` to get the PR number
2727
# https://github.com/orgs/community/discussions/25220#discussioncomment-11285971

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ curl -fsSL https://bun.sh/install | bash
1616
source ~/.bashrc # or source ~/.zshrc
1717

1818
cd ~
19-
git clone https://github.com/commaai/connect.git
19+
git clone https://github.com/commaai/new-connect.git
2020

2121
cd connect
2222
bun install # sets up pre-commit hook

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"author": "comma.ai",
77
"repository": {
88
"type": "git",
9-
"url": "https://github.com/commaai/connect.git"
9+
"url": "https://github.com/commaai/new-connect.git"
1010
},
1111
"scripts": {
1212
"build": "bun run --bun vite build",

0 commit comments

Comments
 (0)