mirror of
https://github.com/agentscope-ai/ReMe.git
synced 2026-09-14 23:21:04 +00:00
Some checks failed
CI / DSH plugin / Validate DSH plugin (push) Has been cancelled
CI / OpenClaw plugin / Validate OpenClaw plugin (push) Has been cancelled
CI / Python packages / Build and verify distributions (push) Has been cancelled
CI / Python quality / GitHub Actions (push) Has been cancelled
CI / Python quality / Pre-commit (push) Has been cancelled
CI / Python tests / Unit Tests - py3.11 (push) Has been cancelled
CI / Python tests / Unit Tests - py3.12 (push) Has been cancelled
CI / Python tests / Unit Tests - py3.13 (push) Has been cancelled
CI / Python tests / Unit Tests - py3.14 (push) Has been cancelled
CI / ReMe Studio / Studio checks (push) Has been cancelled
CI / Windows / CLI smoke - py3.11 (push) Has been cancelled
Deploy / Documentation / Build documentation (push) Has been cancelled
Security / CodeQL / Analyze javascript-typescript (push) Has been cancelled
Security / CodeQL / Analyze python (push) Has been cancelled
Deploy / Documentation / deploy (push) Has been cancelled
* chore(ci): harden and split workflows * fix(ci): support token-based npm publishing * test: make disappearing resource check portable * fix(ci): make Studio releases recoverable * fix(ci): stop Studio publishing on cancellation
39 lines
1,009 B
YAML
39 lines
1,009 B
YAML
name: CI / Documentation
|
|
|
|
on:
|
|
pull_request:
|
|
branches: [main]
|
|
paths:
|
|
- '.github/workflows/ci-docs.yml'
|
|
- '.github/workflows/_build-docs.yml'
|
|
- 'AGENTS.md'
|
|
- 'README.md'
|
|
- 'README_ZH.md'
|
|
- 'docs/**'
|
|
- 'github-pages/**'
|
|
- 'reme/config/default.yaml'
|
|
- 'integrations/claude_code/README.md'
|
|
- 'integrations/hermes_agent/README.md'
|
|
- 'reme_studio/README*.md'
|
|
- 'reme_studio/public/og.jpg'
|
|
- 'integrations/dsh/README*.md'
|
|
- 'integrations/dsh/figures/**'
|
|
- 'integrations/openclaw/README*.md'
|
|
- 'plugins/*/README*.md'
|
|
- 'benchmark/*/README*.md'
|
|
- 'benchmark/toolmemory/gitcha.png'
|
|
workflow_dispatch:
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
documentation:
|
|
name: Test and build documentation
|
|
uses: ./.github/workflows/_build-docs.yml
|
|
with:
|
|
run_tests: true
|