mirror of
https://github.com/MaaAssistantArknights/MaaAssistantArknights.git
synced 2026-07-15 17:30:27 +08:00
Bumps the github-actions group in /.github/workflows with 4 updates: [actions/upload-artifact](https://github.com/actions/upload-artifact), [actions/cache](https://github.com/actions/cache), [actions/download-artifact](https://github.com/actions/download-artifact) and [peter-evans/create-pull-request](https://github.com/peter-evans/create-pull-request). Updates `actions/upload-artifact` from 5 to 6 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v5...v6) Updates `actions/cache` from 4 to 5 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](https://github.com/actions/cache/compare/v4...v5) Updates `actions/download-artifact` from 6 to 7 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/v6...v7) Updates `peter-evans/create-pull-request` from 7 to 8 - [Release notes](https://github.com/peter-evans/create-pull-request/releases) - [Commits](https://github.com/peter-evans/create-pull-request/compare/v7...v8) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/cache dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/download-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: peter-evans/create-pull-request dependency-version: '8' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
64 lines
1.9 KiB
YAML
64 lines
1.9 KiB
YAML
name: Markdown Link Check
|
|
|
|
on:
|
|
schedule:
|
|
- cron: "0 0 * * 2" # Every Tuesday at 00:00 UTC
|
|
push:
|
|
branches:
|
|
- dev
|
|
paths:
|
|
- ".github/workflows/markdown-checker.yml"
|
|
- "docs/**"
|
|
- "**/*.md"
|
|
pull_request:
|
|
branches:
|
|
- dev
|
|
paths:
|
|
- ".github/workflows/markdown-checker.yml"
|
|
- "docs/**"
|
|
- "**/*.md"
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
check-links:
|
|
name: Check Dead Links
|
|
if: github.repository_owner == 'MaaAssistantArknights' && github.event.head_commit.author.email != '41898282+github-actions[bot]@users.noreply.github.com'
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
pull-requests: write
|
|
env:
|
|
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v6
|
|
with:
|
|
show-progress: false
|
|
|
|
- name: Cache lychee responses
|
|
uses: actions/cache@v5
|
|
continue-on-error: true
|
|
with:
|
|
path: .lycheecache
|
|
key: lychee-cache
|
|
|
|
- name: Check dead internal links
|
|
uses: lycheeverse/lychee-action@v2
|
|
with:
|
|
# 仅检查内部链接,排除所有外部链接
|
|
args: >
|
|
--verbose --no-progress
|
|
--cache --max-cache-age 1d --cache-exclude-status '429, 500..599'
|
|
--exclude 'https?://.*'
|
|
--exclude-path 'docs/zh-tw/manual/introduction/introduction_old.md'
|
|
--exclude-path 'docs/ja-jp/manual/introduction/introduction_old.md'
|
|
-- './docs/**/*.md' './README.md'
|
|
|
|
- name: Comment (only for PR)
|
|
if: failure() && github.event_name == 'pull_request'
|
|
uses: marocchino/sticky-pull-request-comment@v2
|
|
with:
|
|
message: |
|
|
Dead links found in the documentation. Please fix them.
|
|
Details: https://github.com/MaaAssistantArknights/MaaAssistantArknights/actions/runs/${{ github.run_id }}
|