docs(agents): require human git authors #6
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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' |