This is an automated email from the ASF dual-hosted git repository.

guoqi pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/apisix-website.git


The following commit(s) were added to refs/heads/master by this push:
     new b3c45e63550 fix: update the twitter icon (#1683)
b3c45e63550 is described below

commit b3c45e63550777699ee267c8a2044fb3f53599ca
Author: Qi Guo <[email protected]>
AuthorDate: Wed Sep 13 13:42:32 2023 +0800

    fix: update the twitter icon (#1683)
---
 .github/workflows/link-check.yml   | 16 +++++++++-------
 doc/src/theme/Footer/index.tsx     |  3 +--
 website/src/theme/Footer/index.tsx |  3 +--
 3 files changed, 11 insertions(+), 11 deletions(-)

diff --git a/.github/workflows/link-check.yml b/.github/workflows/link-check.yml
index 5ec1eebc65e..f614a26c68e 100644
--- a/.github/workflows/link-check.yml
+++ b/.github/workflows/link-check.yml
@@ -36,11 +36,13 @@ jobs:
         run: |
           yarn sync-docs && git status
 
-      - name: Run link check
-        uses: gaurav-nelson/github-action-markdown-link-check@v1
+      - name: Check Links
+        run: |
+          yarn workspace scripts link-checker && git status
+      - name: Archive Broken Links List
+        uses: actions/upload-artifact@v3
+        if: always()
         with:
-          use-quiet-mode: 'yes'
-          use-verbose-mode: 'yes'
-          config-file: '.github/mlc_config.json'
-          folder-path: 'doc/docs/, doc/i18n/zh/'
-        continue-on-error: true
+          name: broken-links.json
+          path: scripts/brokenLinks.json
+          retention-days: 5
diff --git a/doc/src/theme/Footer/index.tsx b/doc/src/theme/Footer/index.tsx
index 81cadb73ad2..6227874c5c7 100644
--- a/doc/src/theme/Footer/index.tsx
+++ b/doc/src/theme/Footer/index.tsx
@@ -11,7 +11,6 @@ import Link from '@docusaurus/Link';
 import useBaseUrl from '@docusaurus/useBaseUrl';
 import { Icon } from '@iconify/react';
 import githubIcon from '@iconify/icons-akar-icons/github-fill';
-import twitterXFill from '@iconify/icons-ri/twitter-x-fill';
 import slackIcon from '@iconify/icons-akar-icons/slack-fill';
 import youtubeIcon from '@iconify/icons-akar-icons/youtube-fill';
 import { LazyLoadImage } from 'react-lazy-load-image-component';
@@ -63,7 +62,7 @@ const footer = {
           to: '/docs/general/join',
         },
         {
-          icon: twitterXFill,
+          icon: 'ri:twitter-x-fill',
           label: 'Twitter',
           to: 'https://twitter.com/ApacheAPISIX',
         },
diff --git a/website/src/theme/Footer/index.tsx 
b/website/src/theme/Footer/index.tsx
index a48e31665ed..6227874c5c7 100644
--- a/website/src/theme/Footer/index.tsx
+++ b/website/src/theme/Footer/index.tsx
@@ -11,7 +11,6 @@ import Link from '@docusaurus/Link';
 import useBaseUrl from '@docusaurus/useBaseUrl';
 import { Icon } from '@iconify/react';
 import githubIcon from '@iconify/icons-akar-icons/github-fill';
-import twitterIcon from '@iconify/icons-akar-icons/twitter-fill';
 import slackIcon from '@iconify/icons-akar-icons/slack-fill';
 import youtubeIcon from '@iconify/icons-akar-icons/youtube-fill';
 import { LazyLoadImage } from 'react-lazy-load-image-component';
@@ -63,7 +62,7 @@ const footer = {
           to: '/docs/general/join',
         },
         {
-          icon: twitterIcon,
+          icon: 'ri:twitter-x-fill',
           label: 'Twitter',
           to: 'https://twitter.com/ApacheAPISIX',
         },

Reply via email to