From 422bedc7dcec7fb5680c6c729f31e37343c7bfdc Mon Sep 17 00:00:00 2001 From: Kris Ka Date: Tue, 16 Sep 2025 02:08:38 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8DGitHub=20Actions?= =?UTF-8?q?=E4=B8=AD=E7=9A=84markdown-link-check=E5=85=BC=E5=AE=B9?= =?UTF-8?q?=E6=80=A7=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 升级Node.js版本从18到20,解决兼容性问题 - 使用npx运行markdown-link-check,避免全局安装问题 - 修复.github/README.md中的GitHub链接 - 统一所有README文件的链接格式 --- .github/README.md | 18 +++++++++--------- .github/workflows/i18n-sync.yml | 10 +++++----- 2 files changed, 14 insertions(+), 14 deletions(-) diff --git a/.github/README.md b/.github/README.md index 31fc358d..eeaff4c4 100644 --- a/.github/README.md +++ b/.github/README.md @@ -13,9 +13,9 @@ [![Celery](https://img.shields.io/badge/Celery-Latest-green?style=flat&logo=celery)](https://celeryproject.org) [![License](https://img.shields.io/badge/License-MIT-yellow?style=flat)](LICENSE) -[![GitHub stars](https://img.shields.io/github/stars/your-username/autoclip?style=social)](https://github.com/your-username/autoclip) -[![GitHub forks](https://img.shields.io/github/forks/your-username/autoclip?style=social)](https://github.com/your-username/autoclip) -[![GitHub issues](https://img.shields.io/github/issues/your-username/autoclip)](https://github.com/your-username/autoclip/issues) +[![GitHub stars](https://img.shields.io/badge/Stars-0-blue?style=social)](https://github.com/zhouxiaoka/autoclip) +[![GitHub forks](https://img.shields.io/badge/Forks-0-blue?style=social)](https://github.com/zhouxiaoka/autoclip) +[![GitHub issues](https://img.shields.io/badge/Issues-0-blue)](https://github.com/zhouxiaoka/autoclip/issues) **语言**: [English](README-EN.md) | [中文](README.md) @@ -65,7 +65,7 @@ AutoClip是一个基于AI的智能视频切片处理系统,能够自动从YouT ```bash # 克隆项目 -git clone https://github.com/your-username/autoclip.git +git clone https://github.com/zhouxiaoka/autoclip.git cd autoclip # Docker一键启动 @@ -85,7 +85,7 @@ cd autoclip ```bash # 克隆项目 -git clone https://github.com/your-username/autoclip.git +git clone https://github.com/zhouxiaoka/autoclip.git cd autoclip # 一键启动(推荐,包含完整检查和监控) @@ -107,9 +107,9 @@ cd autoclip - **飞书**: your_feishu_id ### 开源贡献 -- **问题反馈**: [GitHub Issues](https://github.com/your-username/autoclip/issues) -- **功能建议**: [GitHub Discussions](https://github.com/your-username/autoclip/discussions) -- **代码贡献**: [GitHub Pull Requests](https://github.com/your-username/autoclip/pulls) +- **问题反馈**: [GitHub Issues](https://github.com/zhouxiaoka/autoclip/issues) +- **功能建议**: [GitHub Discussions](https://github.com/zhouxiaoka/autoclip/discussions) +- **代码贡献**: [GitHub Pull Requests](https://github.com/zhouxiaoka/autoclip/pulls) --- @@ -117,7 +117,7 @@ cd autoclip **如果这个项目对你有帮助,请给我们一个 ⭐ Star!** -[![Star History Chart](https://api.star-history.com/svg?repos=your-username/autoclip&type=Date)](https://star-history.com/#your-username/autoclip&Date) +[![Star History Chart](https://api.star-history.com/svg?repos=zhouxiaoka/autoclip&type=Date)](https://star-history.com/#zhouxiaoka/autoclip&Date) Made with ❤️ by AutoClip Team diff --git a/.github/workflows/i18n-sync.yml b/.github/workflows/i18n-sync.yml index 105339ff..c1bdd0ee 100644 --- a/.github/workflows/i18n-sync.yml +++ b/.github/workflows/i18n-sync.yml @@ -23,18 +23,18 @@ jobs: - name: Setup Node.js uses: actions/setup-node@v4 with: - node-version: '18' + node-version: '20' - name: Install dependencies run: | - npm install -g markdown-link-check + npm install -g markdown-link-check@latest npm install -g markdownlint-cli - name: Check markdown links run: | - markdown-link-check README.md - markdown-link-check README-EN.md - markdown-link-check .github/README.md + npx markdown-link-check README.md + npx markdown-link-check README-EN.md + npx markdown-link-check .github/README.md - name: Lint markdown files run: |