From fd61d4cd23a421b367bffc1c9a4638260ebedb51 Mon Sep 17 00:00:00 2001 From: Hentry Martin Date: Wed, 29 Oct 2025 16:29:53 +0100 Subject: [PATCH 1/3] fix: copilot url --- config/constants/development.js | 2 +- config/constants/local.js | 2 +- config/constants/production.js | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/config/constants/development.js b/config/constants/development.js index 930e282b..06fc24b3 100644 --- a/config/constants/development.js +++ b/config/constants/development.js @@ -22,7 +22,7 @@ module.exports = { CHALLENGE_TRACKS_URL: `${DEV_API_HOSTNAME}/v6/challenge-tracks`, CHALLENGE_PHASES_URL: `${DEV_API_HOSTNAME}/v6/challenge-phases`, CHALLENGE_TIMELINES_URL: `${DEV_API_HOSTNAME}/v6/challenge-timelines`, - COPILOTS_URL: 'https://copilots.topcoder-dev.com/copilots', + COPILOTS_URL: 'https://copilots.topcoder-dev.com', PROJECT_API_URL: `${DEV_API_HOSTNAME}/v5/projects`, GROUPS_API_URL: `${DEV_API_HOSTNAME}/v6/groups`, TERMS_API_URL: `${DEV_API_HOSTNAME}/v5/terms`, diff --git a/config/constants/local.js b/config/constants/local.js index f954af5f..38146249 100644 --- a/config/constants/local.js +++ b/config/constants/local.js @@ -39,7 +39,7 @@ module.exports = { CHALLENGE_TIMELINES_URL: `${LOCAL_CHALLENGE_API}/challenge-timelines`, // Copilots and other apps remain on dev - COPILOTS_URL: 'https://copilots.topcoder-dev.com/copilots', + COPILOTS_URL: 'https://copilots.topcoder-dev.com', // Projects API: keep dev unless you run projects locally PROJECT_API_URL: `${DEV_API_HOSTNAME}/v5/projects`, diff --git a/config/constants/production.js b/config/constants/production.js index 4a1973d5..b9172680 100644 --- a/config/constants/production.js +++ b/config/constants/production.js @@ -21,7 +21,7 @@ module.exports = { CHALLENGE_TRACKS_URL: `${PROD_API_HOSTNAME}/v5/challenge-tracks`, CHALLENGE_PHASES_URL: `${PROD_API_HOSTNAME}/v5/challenge-phases`, CHALLENGE_TIMELINES_URL: `${PROD_API_HOSTNAME}/v5/challenge-timelines`, - COPILOTS_URL: `https://copilots.${DOMAIN}/copilots`, + COPILOTS_URL: `https://copilots.${DOMAIN}`, PROJECT_API_URL: `${PROD_API_HOSTNAME}/v5/projects`, GROUPS_API_URL: `${PROD_API_HOSTNAME}/v5/groups`, TERMS_API_URL: `${PROD_API_HOSTNAME}/v5/terms`, From cd918f550b2d0b11dd002275637a71000577bb1b Mon Sep 17 00:00:00 2001 From: Hentry Martin Date: Wed, 29 Oct 2025 16:30:39 +0100 Subject: [PATCH 2/3] fix: copilot url --- .circleci/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 02fc2b25..7b8f2e4d 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -160,7 +160,7 @@ workflows: context: org-global filters: &filters-dev branches: - only: ["develop"] + only: ["develop", "pm-2640"] # Production builds are exectuted only on tagged commits to the # master branch. From 6a7f36f43f95337203fc2f1ca468518246ad84fd Mon Sep 17 00:00:00 2001 From: Hentry Martin Date: Wed, 29 Oct 2025 16:54:01 +0100 Subject: [PATCH 3/3] fix: copilot url --- .circleci/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 7b8f2e4d..02fc2b25 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -160,7 +160,7 @@ workflows: context: org-global filters: &filters-dev branches: - only: ["develop", "pm-2640"] + only: ["develop"] # Production builds are exectuted only on tagged commits to the # master branch.