mirror of
https://github.com/iflytek/skillhub.git
synced 2026-08-28 11:25:00 +00:00
ci(deepwiki): add DeepWiki documentation crawler workflow
This commit is contained in:
parent
cf19f33f5c
commit
d64a7f7ed9
1 changed files with 33 additions and 0 deletions
33
.github/workflows/deepwiki.yml
vendored
Normal file
33
.github/workflows/deepwiki.yml
vendored
Normal file
|
|
@ -0,0 +1,33 @@
|
|||
name: DeepWiki Documentation Crawler
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [main]
|
||||
paths:
|
||||
- 'docs/**'
|
||||
- '**.md'
|
||||
- 'server/src/**'
|
||||
- 'web/src/**'
|
||||
workflow_dispatch:
|
||||
|
||||
concurrency:
|
||||
group: deepwiki-${{ github.ref }}
|
||||
cancel-in-progress: true
|
||||
|
||||
permissions:
|
||||
contents: read
|
||||
|
||||
jobs:
|
||||
crawl:
|
||||
name: Crawl DeepWiki Documentation
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- name: Check out repository
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: DeepWiki Documentation Crawler
|
||||
uses: erayack/deepwiki-action@v1
|
||||
with:
|
||||
repository: ${{ github.repository }}
|
||||
max_concurrency: '3'
|
||||
Loading…
Add table
Reference in a new issue