From 7b40914fb1959e3367a2d16a8447c4a9d6ac738f Mon Sep 17 00:00:00 2001 From: Sophie <29382425+sophietheking@users.noreply.github.com> Date: Fri, 5 Aug 2022 11:57:12 +0200 Subject: [PATCH 1/6] adds two popular articles --- content/get-started/index.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/content/get-started/index.md b/content/get-started/index.md index 6d0d9a6708..e55133252a 100644 --- a/content/get-started/index.md +++ b/content/get-started/index.md @@ -40,8 +40,10 @@ featuredLinks: - /get-started/learning-about-github/about-versions-of-github-docs - /github/getting-started-with-github/github-glossary - /github/getting-started-with-github/fork-a-repo + - /get-started/writing-on-github/getting-started-with-writing-and-formatting-on-github/about-writing-and-formatting-on-github - /github/getting-started-with-github/keyboard-shortcuts - /github/getting-started-with-github/saving-repositories-with-stars + - /get-started/importing-your-projects-to-github/importing-source-code-to-github/adding-locally-hosted-code-to-github guideCards: - /github/getting-started-with-github/types-of-github-accounts - /github/getting-started-with-github/finding-ways-to-contribute-to-open-source-on-github From b17f88128c49e27aacbd2a8c5518a2ba0defd485 Mon Sep 17 00:00:00 2001 From: Sophie <29382425+sophietheking@users.noreply.github.com> Date: Fri, 5 Aug 2022 12:28:55 +0200 Subject: [PATCH 2/6] updates link --- content/get-started/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/get-started/index.md b/content/get-started/index.md index e55133252a..232be2f568 100644 --- a/content/get-started/index.md +++ b/content/get-started/index.md @@ -26,7 +26,7 @@ introLinks: quickstart: /github/getting-started-with-github/quickstart featuredLinks: guides: - - /github/getting-started-with-github/githubs-products + - /get-started/learning-about-github/githubs-products - /github/getting-started-with-github/create-a-repo - /get-started/onboarding/getting-started-with-your-github-account - /get-started/onboarding/getting-started-with-github-team From 269699fd8c7f73cf962bdb50ffbd9e1aa5bac07c Mon Sep 17 00:00:00 2001 From: Sophie <29382425+sophietheking@users.noreply.github.com> Date: Fri, 5 Aug 2022 14:17:24 +0200 Subject: [PATCH 3/6] change test --- tests/content/featured-links.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/content/featured-links.js b/tests/content/featured-links.js index 3cb4c2bac9..59e5b2bea3 100644 --- a/tests/content/featured-links.js +++ b/tests/content/featured-links.js @@ -70,7 +70,7 @@ describe('featuredLinks', () => { test('Enterprise user intro links have expected values', async () => { const $ = await getDOM(`/en/enterprise/${enterpriseServerReleases.latest}/user/get-started`) const $featuredLinks = $('[data-testid=article-list] a') - expect($featuredLinks).toHaveLength(11) + expect($featuredLinks).toHaveLength(13) expect($featuredLinks.eq(0).attr('href')).toBe( `/en/enterprise-server@${enterpriseServerReleases.latest}/github/getting-started-with-github/githubs-products` ) From 68c1f68022e49b885016ba9346538bc41c9ade39 Mon Sep 17 00:00:00 2001 From: Sophie <29382425+sophietheking@users.noreply.github.com> Date: Fri, 5 Aug 2022 14:25:07 +0200 Subject: [PATCH 4/6] Update index.md --- content/get-started/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/get-started/index.md b/content/get-started/index.md index 232be2f568..e55133252a 100644 --- a/content/get-started/index.md +++ b/content/get-started/index.md @@ -26,7 +26,7 @@ introLinks: quickstart: /github/getting-started-with-github/quickstart featuredLinks: guides: - - /get-started/learning-about-github/githubs-products + - /github/getting-started-with-github/githubs-products - /github/getting-started-with-github/create-a-repo - /get-started/onboarding/getting-started-with-your-github-account - /get-started/onboarding/getting-started-with-github-team From f1f87f36d709294a4b89b3ae6ee308e2842b920a Mon Sep 17 00:00:00 2001 From: Sophie <29382425+sophietheking@users.noreply.github.com> Date: Mon, 8 Aug 2022 15:30:56 +0200 Subject: [PATCH 5/6] Update tests/content/featured-links.js Co-authored-by: Peter Bengtsson --- tests/content/featured-links.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/content/featured-links.js b/tests/content/featured-links.js index 59e5b2bea3..1f3d08f694 100644 --- a/tests/content/featured-links.js +++ b/tests/content/featured-links.js @@ -70,7 +70,7 @@ describe('featuredLinks', () => { test('Enterprise user intro links have expected values', async () => { const $ = await getDOM(`/en/enterprise/${enterpriseServerReleases.latest}/user/get-started`) const $featuredLinks = $('[data-testid=article-list] a') - expect($featuredLinks).toHaveLength(13) + expect($featuredLinks.length > 0).toBeTruthy() expect($featuredLinks.eq(0).attr('href')).toBe( `/en/enterprise-server@${enterpriseServerReleases.latest}/github/getting-started-with-github/githubs-products` ) From cc30f86563a6d1f65a8ad94618dbc50520208c7a Mon Sep 17 00:00:00 2001 From: Sophie <29382425+sophietheking@users.noreply.github.com> Date: Tue, 16 Aug 2022 15:30:16 +0200 Subject: [PATCH 6/6] removes articles from overiew --- content/get-started/index.md | 5 ----- 1 file changed, 5 deletions(-) diff --git a/content/get-started/index.md b/content/get-started/index.md index e55133252a..18d0395a5c 100644 --- a/content/get-started/index.md +++ b/content/get-started/index.md @@ -27,7 +27,6 @@ introLinks: featuredLinks: guides: - /github/getting-started-with-github/githubs-products - - /github/getting-started-with-github/create-a-repo - /get-started/onboarding/getting-started-with-your-github-account - /get-started/onboarding/getting-started-with-github-team - /get-started/onboarding/getting-started-with-github-enterprise-cloud @@ -39,11 +38,7 @@ featuredLinks: - /github/getting-started-with-github/set-up-git - /get-started/learning-about-github/about-versions-of-github-docs - /github/getting-started-with-github/github-glossary - - /github/getting-started-with-github/fork-a-repo - - /get-started/writing-on-github/getting-started-with-writing-and-formatting-on-github/about-writing-and-formatting-on-github - /github/getting-started-with-github/keyboard-shortcuts - - /github/getting-started-with-github/saving-repositories-with-stars - - /get-started/importing-your-projects-to-github/importing-source-code-to-github/adding-locally-hosted-code-to-github guideCards: - /github/getting-started-with-github/types-of-github-accounts - /github/getting-started-with-github/finding-ways-to-contribute-to-open-source-on-github