Gitlab 文档审查
- 作者仓库星标 0
- 作者仓库 skills-registry
GitLab MR
Create an MR and drive it to a truly mergeable state (all CI green + no merge conflicts). Core principle: write documentation first, then submit the MR, verify with APIs, and loop through fixes until the MR is mergeable.
Prerequisite: The current repository's remote points to gitlab.example.com, and glab CLI is installed.
Rules
- Never use the
skip-doc-checklabel — every MR must have a real documentation link - User Story must be relevant to the MR changes — CI checks relevance (
check:mr-us-relevance); irrelevant links will be rejected - Blob links must point to pushed files — the branch name and file path in the link must exist on the remote
- Verify with APIs, don't guess — confirm results at every step using
glabcommands
Execution Flow
Step 1: Check Prerequisites
# Confirm remote points to gitlab.example.com
git remote get-url origin
# Confirm current branch is not main/master
git branch --show-current
# Confirm no uncommitted changes
git status
If there are uncommitted changes, commit or stash them first.
Step 2: Ensure Documentation Exists
The MR description must contain documentation links. CI performs two checks:
check:mr-documentation: whether the link format is validcheck:mr-us-relevance: whether the linked document is relevant to the MR changes
Prefer GitLab blob links pointing to documentation files within the repository.
2a: Find or Create Documentation
Check whether related documentation already exists in the repository:
# Look for potentially related documents
ls docs/plans/ docs/04-user-stories/ 2>/dev/null
If no related documentation exists, create one for this MR:
- Place the document at
docs/plans/YYYY-MM-DD-<feature-name>.md(design doc) ordocs/04-user-stories/<feature-name>.md(User Story) - The document content must cover the core changes in this MR (otherwise the relevance check will fail)
- The document does not need to be long, but must describe: what was done and why
2b: Commit and Push Documentation
git add docs/plans/<doc-file>.md
git commit -m "docs: add <feature> design document"
Step 3: Push the Branch
git push -u origin <branch-name>
Step 4: Create or Update MR
Check if an MR already exists
glab mr list --source-branch <branch-name>
If no MR exists, create one
Analyze all commits in git log main..HEAD to write the MR title and description.
Blob link format: https://gitlab.example.com/<group>/<project>/-/blob/<branch>/<filepath>
<group>/<project>parsed fromgit remote get-url origin<branch>is the current branch name<filepath>is the in-repo path to the document
glab mr create \
--title "<concise title, <70 chars>" \
--description "$(cat <<'EOF'
## Change Summary
<Summary based on all commits, 2-3 bullet points>
## Related Documentation
- User Story (required): https://gitlab.example.com/<group>/<project>/-/blob/<branch>/docs/plans/<doc>.md
- Tech Design: <fill if available, otherwise remove this line>
## Change Type
- [x] <corresponding type>
EOF
)" \
--push
If an MR exists but the description lacks documentation links
glab mr update <mr-id> --description "$(cat <<'EOF'
<complete description with blob links>
EOF
)"
Step 5: Wait and Check Pipeline
After creating/updating the MR, wait for the pipeline to trigger and complete.
# Wait for pipeline to start (usually takes a few seconds after push)
sleep 5
# Check pipeline status
glab ci status
If the pipeline is still running, wait and check again:
sleep 20
glab ci status
Step 6: Handle Failed Jobs
If the pipeline fails, check which specific job failed:
# Get status of all jobs in the pipeline
glab api "projects/:id/merge_requests/<mr-iid>/pipelines" | python3 -c "
import sys,json
pipelines = json.load(sys.stdin)
if pipelines:
pid = pipelines[0]['id']
print(f'Latest pipeline: {pid}, status: {pipelines[0][\"status\"]}')
"
# View failed job logs
glab api "projects/:id/pipelines/<pipeline-id>/jobs" | python3 -c "
import sys,json
for j in json.load(sys.stdin):
if j['status'] == 'failed':
print(f'FAILED: {j[\"name\"]} (id={j[\"id\"]})')
"
# Get the tail of a failed job's log
glab api "projects/:id/jobs/<job-id>/trace" 2>&1 | tail -30
Common Failures and Fixes
| Failed Job | Cause | Fix |
|---|---|---|
check:mr-documentation |
MR description missing a valid documentation link | glab mr update <id> --description "..." to add blob links |
check:mr-us-relevance |
Document content is not relevant to MR changes | Edit the document to cover the MR's core changes, commit and push |
validate:skills |
SKILL.md format is non-compliant | Run uv run python scripts/validate.py --skills to fix locally |
validate:security |
Security scan detected an issue | Run uv run python scripts/validate.py --security to fix locally |
| Merge conflict | Branch conflicts with main | git fetch origin main && git rebase origin/main, resolve conflicts and force push |
After fixing:
- If the issue was in the MR description (
check:mr-documentation): update the description then retry the job - If the issue was in code/docs: commit the fix, push, and a new pipeline will trigger automatically
# Retry a failed job
glab ci retry <job-id>
# Or push a new commit to trigger a new pipeline
git push
Step 7: Confirm MR Is Mergeable
After CI passes, also confirm the MR has no merge conflicts. CI passing does not mean mergeable.
glab ci status # Confirm CI is all green
glab mr view <branch> # Confirm no merge conflict
If there are merge conflicts, resolve them (rebase onto main), force push, and wait for the new CI to pass.
Loop through Steps 5-7 until both conditions are met: CI all green + no conflicts.
Once the MR is truly mergeable, report the MR URL to the user.
Examples
Full Workflow Example
# Create MR
glab mr create --title "feat: add retry logic" --description "..." --push
# Loop until CI passes
glab ci status # -> if failed, check logs, fix -> check again
# After CI passes, check merge status
glab mr view feat/add-retry-logic
# -> conflicts? rebase to resolve -> force push -> wait for new CI
# Final confirmation: CI all green + no conflicts -> report MR URL
Bad/Good Examples
Bad — Declaring done just because CI passed
glab ci status # -> success
# -> "MR !42 is created, CI passed!" <- but there's actually a merge conflict, cannot merge
Bad — Posting an irrelevant link
glab mr create --description "User Story: .../README.md" # unrelated to changes, CI will reject
Good — Driving to a truly mergeable state
# Create MR -> poll CI and fix failures -> check merge status -> resolve conflicts -> confirm mergeable
Notes
- Branch names containing
/(e.g.,feat/my-branch) are correctly handled by GitLab in blob links glab ci statusshows the status of all jobs in the latest pipeline- If the pipeline doesn't trigger for a long time, you can manually run:
glab ci run - After updating the MR description, you need to retry the failed job or wait for a new pipeline
<!-- tomevault:4.0:skill_md:2026-05-22 -->Source: addxai/enterprise-harness-engineering — distributed by TomeVault.
- 流狐分类
- 文档
- 作者声明 Agent
- 未找到明确声明;不据此推断已兼容或已测试
- 静态检查
- 88 / 100 · 启发式扫描,不代表运行安全
- 作者 / 版本 / 许可
- @tomevault-io · 未声明 license
- 流狐 Token 估算
- 低消耗
- 流狐接入估算
- 需简单配置
- 是否需要外部 API Key
- 未发现要求
- 检测到的系统要求
- 未声明
- 底层运行要求
- Python
- 检测到的文件与系统行为
-
- 只读
- 允许写入 / 修改
- Shell 执行
- 检测到的网络行为
- 允许外网请求
- 安装命令数
- 无(仅作为资料)
档案由构建时根据 SKILL.md 与安装命令自动衍生,可能与作者实际意图存在差异。
需要注意: 未限定 allowed-tools,默认拥有全部工具权限。
# Full Workflow Example
# Create MR
glab mr create --title "feat: add retry logic" --description "..." --push
# Loop until CI passes
glab ci status # -> if failed, check logs, fix -> check again
# After CI passes, check merge status
glab mr view feat/add-retry-logic
# -> conflicts? rebase to resolve -> force push -> wait for new CI
# Final confirmation: CI all green + no conflicts -> report MR URL If there are uncommitted changes, commit or stash them first.
The MR description must contain documentation links. CI performs two checks: check:mr-documentation: whether the link format is valid check:mr-us-relevance: whether the linked document is relevant to the MR changes
Step 3: Push the Branch
Check if an MR already exists If no MR exists, create one Analyze all commits in git log main..HEAD to write the MR title and description.
After creating/updating the MR, wait for the pipeline to trigger and complete. If the pipeline is still running, wait and check again:
# GitLab MR
Create an MR and drive it to a **truly mergeable** state (all CI green + no merge conflicts). Core principle: **write documentation first, then submit the MR, verify with APIs, and loop through fixes until the MR is mergeable.**
Prerequisite: The current repository's remote points to `gitlab.example.com`, and `glab` CLI is installed.
---
## Rules
1. **Never use the `skip-doc-check` label** — every MR must have a real documentation link
2. **User Story must be relevant to the MR changes** — CI checks relevance (`check:mr-us-relevance`); irrelevant links will be rejected
3. **Blob links must point to pushed files** — the branch name and file path in the link must exist on the remote
4. **Verify with APIs, don't guess** — confirm results at every step using `glab` commands
---
## Execution Flow
### Step 1: Check Prerequisites
```bash
# Confirm remote points to gitlab.example.com
git remote get-url origin
# Confirm current branch is not main/master
git branch --show-current
# Confirm no uncommitted changes
git status
```
If there are uncommitted changes, commit or stash them first.
### Step 2: Ensure Documentation Exists
The MR description must contain documentation links. CI performs two checks:
- `check:mr-documentation`: whether the link format is valid
- `check:mr-us-relevance`: whether the linked document is relevant to the MR changes
**Prefer GitLab blob links** pointing to documentation files within the repository.
#### 2a: Find or Create Documentation
Check whether related documentation already exists in the repository:
```bash
# Look for potentially related documents
ls docs/plans/ docs/04-user-stories/ 2>/dev/null
```
If no related documentation exists, create one for this MR:
… 作者原文负责流程事实;流狐只索引当前章节、要点、文件与命令。
章节 -> Rules → Execution Flow → Step 1: Check Prerequisites → Step 2: Ensure Documentation Exists → Step 3: Push the Branch → Step 4: Create or Update MR
要点 -> truly mergeable · Never use the skip-doc-check label · User Story must be relevant to the MR changes · Blob links must point to pushed files · Verify with APIs, don't guess · Prefer GitLab blob links · cover the core changes in this MR · CI passing does not mean mergeable.
文件/命令 -> gitlab.example.com · glab · skip-doc-check · check:mr-us-relevance · check:mr-documentation · docs/plans/YYYY-MM-DD-<feature-name>.md · docs/04-user-stories/<feature-name>.md · git log main..HEAD
内容 SHA-256 -> ac33f8e836b7
方法与流程
适用与边界
原文中的明确线索
gitlab.example.com、glab、skip-doc-check、check:mr-us-relevance、check:mr-documentation、docs/plans/YYYY-MM-DD-<feature-name>.md、docs/04-user-stories/<feature-name>.md、git log main..HEAD