Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update occurences of github.com/vaticle to github.com/typedb #255

Draft
wants to merge 1 commit into
base: development
Choose a base branch
from
Draft
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
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ jobs:
- run: |
apt update -y
apt install -y git
git push --delete https://[email protected]/vaticle/typedb-console.git $CIRCLE_BRANCH
git push --delete https://[email protected]/typedb/typedb-console.git $CIRCLE_BRANCH


workflows:
Expand Down
10 changes: 5 additions & 5 deletions .factory/automation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ config:
build:
quality:
filter:
owner: vaticle
owner: typedb
branch: [master, development]
dependency-analysis:
image: vaticle-ubuntu-22.04
Expand Down Expand Up @@ -43,7 +43,7 @@ build:
bazel test //test/assembly:test-assembly-native --test_output=streamed
deploy-runner-maven-snapshot:
filter:
owner: vaticle
owner: typedb
branch: [master, development]
image: vaticle-ubuntu-22.04
dependencies: [build]
Expand All @@ -54,7 +54,7 @@ build:
sync-dependencies:
image: vaticle-ubuntu-22.04
filter:
owner: vaticle
owner: typedb
branch: [master, development]
dependencies: [test-assembly]
command: |
Expand All @@ -63,7 +63,7 @@ build:

release:
filter:
owner: vaticle
owner: typedb
branch: master
validation:
validate-dependencies:
Expand All @@ -88,7 +88,7 @@ release:
echo "Successfully pushed branch 'release', which triggers a release workflow in CircleCI. The progress of the release can be tracked there."
deploy-runner-maven-release:
filter:
owner: vaticle
owner: typedb
branch: master
image: vaticle-ubuntu-22.04
command: |
Expand Down
4 changes: 2 additions & 2 deletions dependencies/vaticle/repositories.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@ load("@bazel_tools//tools/build_defs/repo:git.bzl", "git_repository")
def vaticle_dependencies():
git_repository(
name = "vaticle_dependencies",
remote = "https://github.com/vaticle/dependencies",
remote = "https://github.com/typedb/dependencies",
commit = "294ef724c3853c9851e1e0c6bc04e0470c724e10", # sync-marker: do not remove this comment, this is used for sync-dependencies by @vaticle_dependencies
)

def vaticle_typedb_driver():
git_repository(
name = "vaticle_typedb_driver",
remote = "https://github.com/vaticle/typedb-driver",
remote = "https://github.com/typedb/typedb-driver",
commit = "c75330e84bb5d5b3a5451baac691d55cc4d971c5", # sync-marker: do not remove this comment, this is used for sync-dependencies by @vaticle_typedb_driver
)