diff --git a/content/actions/index.md b/content/actions/index.md index 31aaabea62..22599a309f 100644 --- a/content/actions/index.md +++ b/content/actions/index.md @@ -28,7 +28,6 @@ featuredLinks: - /actions/security-guides/encrypted-secrets changelog: label: actions -product_video: 'https://www.youtube-nocookie.com/embed/cP0I9w2coGU' redirect_from: - /articles/automating-your-workflow-with-github-actions - /articles/customizing-your-project-with-github-actions diff --git a/contributing/videos.md b/contributing/videos.md index db6759c2c0..64740b08f9 100644 --- a/contributing/videos.md +++ b/contributing/videos.md @@ -152,17 +152,6 @@ Location: /where/in/docs Transcript: ./content/video-transcripts/filename ``` -``` -Title: GitHub Actions - Supercharge your GitHub Flow -URL: https://www.youtube-nocookie.com/embed/cP0I9w2coGU -Description: A 3 minute overview of how GitHub Actions fits in the GitHub flow. -Product: Actions -Versions: All -Date added: 2020-12-03 -Location: content/actions/index.md -Transcript: TBD -``` - ``` Title: Codespaces - Your instant dev box in the cloud URL: https://www.youtube-nocookie.com/embed/_W9B7qc9lVc diff --git a/tests/fixtures/article-with-videos.md b/tests/fixtures/article-with-videos.md index 889d863c19..293a5ff3f3 100644 --- a/tests/fixtures/article-with-videos.md +++ b/tests/fixtures/article-with-videos.md @@ -5,11 +5,11 @@ versions: featuredLinks: videos: - title: codespaces - href: 'https://www.youtube-nocookie.com/embed/cP0I9w2coGU' + href: 'https://www.youtube-nocookie.com/embed/_W9B7qc9lVc' - title: more codespaces - href: 'https://www.youtube-nocookie.com/embed/cP0I9w2coGU' + href: 'https://www.youtube-nocookie.com/embed/_W9B7qc9lVc' - title: even more codespaces - href: 'https://www.youtube-nocookie.com/embed/cP0I9w2coGU' + href: 'https://www.youtube-nocookie.com/embed/_W9B7qc9lVc' videosHeading: Custom Videos heading layout: product-landing --- diff --git a/tests/unit/page.js b/tests/unit/page.js index 8eef9202c3..a73cf046b2 100644 --- a/tests/unit/page.js +++ b/tests/unit/page.js @@ -528,15 +528,15 @@ describe('Page class', () => { expect(page.featuredLinks.videos).toStrictEqual([ { title: 'codespaces', - href: 'https://www.youtube-nocookie.com/embed/cP0I9w2coGU', + href: 'https://www.youtube-nocookie.com/embed/_W9B7qc9lVc', }, { title: 'more codespaces', - href: 'https://www.youtube-nocookie.com/embed/cP0I9w2coGU', + href: 'https://www.youtube-nocookie.com/embed/_W9B7qc9lVc', }, { title: 'even more codespaces', - href: 'https://www.youtube-nocookie.com/embed/cP0I9w2coGU', + href: 'https://www.youtube-nocookie.com/embed/_W9B7qc9lVc', }, ])