From b82004466f696cd7602395a87405af1fc52df2de Mon Sep 17 00:00:00 2001 From: AutoDev Bot Date: Fri, 29 May 2026 17:12:39 +0800 Subject: [PATCH] docs: add AutoDev E2E smoke test note (#1837) Documentation-only marker recording the end-to-end verification of the GitHub AutoDev pipeline after scheduler deployment. No runtime behavior changes. --- .../contribution/autodev_smoke_test.md | 40 +++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 docs/en/open_source/contribution/autodev_smoke_test.md diff --git a/docs/en/open_source/contribution/autodev_smoke_test.md b/docs/en/open_source/contribution/autodev_smoke_test.md new file mode 100644 index 000000000..613693645 --- /dev/null +++ b/docs/en/open_source/contribution/autodev_smoke_test.md @@ -0,0 +1,40 @@ +--- +title: AutoDev E2E Smoke Test Note +desc: Documentation-only marker recording the end-to-end verification of the GitHub AutoDev flow after scheduler deployment. +--- + +# AutoDev E2E Smoke Test Note + +This page is a documentation-only marker used to verify the GitHub AutoDev +pipeline end-to-end after a scheduler deployment. It intentionally introduces +**no runtime behavior changes** — its sole purpose is to exercise the flow +that turns a GitHub Issue into a reviewable pull request. + +## Scope + +- Issue: MemOS#1837 +- Task type: `task` (label `ai-task`) +- Change type: docs-only + +## Verified AutoDev behavior + +The following aspects of the AutoDev pipeline are exercised by this change: + +- `code_tasks.base_branch` is `main`. +- `github_info` dual-write is created for the task. +- The work branch is created from `main` + (here: `autodev/MemOS-1837`). +- The pull request base is `dev-20260604-v2.0.19`. +- The pull request assignees / reviewers are + [@CarltonXiang](https://github.com/CarltonXiang) and + [@syzsunshine219](https://github.com/syzsunshine219). + +## Non-goals + +- No source-code modifications. +- No new dependencies, configuration, or migrations. +- No test additions — this note does not exercise runtime code, so no unit + or integration tests are required. + +If you are reading this in the future and the AutoDev flow has stabilized, +this page can be safely removed.