一键导入
fix-ci-doc-path-triggers
Exclude .md/.txt files from triggering build CI workflows — bindings/**/*.md should not trigger language_bindings or demo_tests
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Exclude .md/.txt files from triggering build CI workflows — bindings/**/*.md should not trigger language_bindings or demo_tests
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Add device information query functions through HAL → ins:: API → language bindings
Add --device all/--timer/--info CLI flags to demos across all languages for competition scoring
Add composite signal operators using existing primitives (no dedicated backend kernels needed)
How to port a cusignal Python/CUDA module to ins::signal C++ using Insight7 primitives and HAL
Profile and optimize binding language (Lua/Julia/Python) demo performance to match or exceed C++ baseline
busted loads _insight.so from ~/.luarocks/lib first, not build/ — must copy .so after rebuild
| name | fix-ci-doc-path-triggers |
| description | Exclude .md/.txt files from triggering build CI workflows — bindings/**/*.md should not trigger language_bindings or demo_tests |
| source | auto-skill |
| extracted_at | 2026-06-05T19:13:01.355Z |
bindings/** path trigger in CI workflows catches README changes, triggering unnecessary builds.
Add !bindings/**/*.md and !bindings/**/*.txt exclusions to workflow path triggers.
on:
push:
branches: [ main, master, develop ]
paths:
- 'bindings/**'
- '!bindings/**/*.md'
- '!bindings/**/*.txt'
- 'include/**'
- 'src/**'
- 'backends/**'
# ...
pull_request:
branches: [ main, master ]
paths:
- 'bindings/**'
- '!bindings/**/*.md'
- '!bindings/**/*.txt'
# ...
Same pattern — add exclusions to both push and pull_request triggers.
cpu_tests.yml — doesn't trigger on bindings/** at allplot_tests.yml — only triggers on plot-specific filescode_style.yml — should run on ALL PRs (including docs).github/workflows/language_bindings.yml — add !bindings/**/*.md and !bindings/**/*.txt to both push and pull_request paths.github/workflows/demo_tests.yml — samecode_style.yml (it should run on all PRs)