diff --git a/.circleci/config.yml b/.circleci/config.yml index 791f6ec510..5b87843434 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -356,7 +356,7 @@ workflows: filters: branches: only: - - TCWEB-69 + - free # This is alternate dev env for parallel testing - "build-qa": context : org-global diff --git a/__tests__/shared/components/Header/__snapshots__/index.jsx.snap b/__tests__/shared/components/Header/__snapshots__/index.jsx.snap index 57529344d8..4379a704c9 100644 --- a/__tests__/shared/components/Header/__snapshots__/index.jsx.snap +++ b/__tests__/shared/components/Header/__snapshots__/index.jsx.snap @@ -136,6 +136,11 @@ exports[`Default render 1`] = ` "openNewTab": true, "title": "Discord", }, + Object { + "href": "https://platform-ui.topcoder-dev.com/learn", + "openNewTab": true, + "title": "Learn", + }, ], "title": "COMMUNITY", }, diff --git a/config/default.js b/config/default.js index fc8f5da39b..e7058e0ccb 100644 --- a/config/default.js +++ b/config/default.js @@ -410,6 +410,11 @@ module.exports = { href: 'https://discord.gg/topcoder', openNewTab: true, }, + { + title: 'Learn', + href: 'https://platform-ui.topcoder-dev.com/learn', + openNewTab: true, + }, ], }, ], diff --git a/config/production.js b/config/production.js index a97b9b3cb3..528760c7d9 100644 --- a/config/production.js +++ b/config/production.js @@ -194,6 +194,11 @@ module.exports = { href: 'https://discord.gg/topcoder?ref=nav', openNewTab: true, }, + { + title: 'Learn', + href: 'https://platform-ui.topcoder.com/learn', + openNewTab: true, + }, ], }, ],