diff --git a/.github/ISSUE_TEMPLATE/feature_request.yml b/.github/ISSUE_TEMPLATE/feature_request.yml index aa88bb5..5e9997a 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.yml +++ b/.github/ISSUE_TEMPLATE/feature_request.yml @@ -1,5 +1,5 @@ name: 🚀 Feature request -description: Submit a proposal/request for a new feature for the contribution API +description: Submit a proposal/request for a new feature for the companion API labels: "type: new feature" assignees: frgfm diff --git a/.github/verify_labels.py b/.github/verify_labels.py index e243d80..ea685fd 100644 --- a/.github/verify_labels.py +++ b/.github/verify_labels.py @@ -54,7 +54,7 @@ } GH_ORG = "quack-ai" -GH_REPO = "contribution-api" +GH_REPO = "companion" def query_repo(cmd: str, *, accept) -> Any: diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml index 9384a2e..6b78fda 100644 --- a/.github/workflows/push.yml +++ b/.github/workflows/push.yml @@ -67,7 +67,7 @@ jobs: username: ${{ secrets.SSH_DEV_USERNAME }} key: ${{ secrets.SSH_DEPLOY_DEV }} script: | - docker pull quackai/contribution-api:latest + docker pull quackai/companion:latest docker rmi -f $(docker images -f "dangling=true" -q) cd devops && docker compose stop backend && docker compose up -d --wait && docker compose exec backend alembic upgrade head docker inspect -f '{{ .Created }}' $(docker compose images -q backend) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index c80d862..723eb30 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -66,7 +66,7 @@ First, check whether the topic wasn't already covered in an open / closed issue. ### Questions -If you are wondering how to do something with Contribution API, or a more general question, you should consider checking out Github [discussions](https://github.com/quack-ai/companion/discussions). See it as a Q&A forum, or the project-specific StackOverflow! +If you are wondering how to do something with Companion API, or a more general question, you should consider checking out Github [discussions](https://github.com/quack-ai/companion/discussions). See it as a Q&A forum, or the project-specific StackOverflow! ## Developer setup @@ -87,8 +87,8 @@ If you are wondering how to do something with Contribution API, or a more genera 2 - [Clone your fork](https://docs.github.com/en/repositories/creating-and-managing-repositories/cloning-a-repository) to your local disk and set the upstream to this repo ```shell -git clone git@github.com:/contribution-api.git -cd contribution-api +git clone git@github.com:/companion.git +cd companion git remote add upstream https://github.com/quack-ai/companion.git ```