一键导入
workflow-dispatch-validation-routing
Keep mixed validation/release GitHub workflow dispatch inputs from misrouting validation runs
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Keep mixed validation/release GitHub workflow dispatch inputs from misrouting validation runs
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Drive package defaults, release packaging, and website version display from one MSBuild property
Validate every meaningful workflow_dispatch input combination before approving release-pipeline changes
Validate NuGet release artifacts before publish and ensure both package and symbol payloads are release-correct
Ship an Astro docs site to GitHub Pages with SEO, validation, and custom-domain safety checks
Keep repo-local .NET sample apps zero-config by avoiding native apphosts when macOS integrity enforcement can kill them
Avoid `.App` executable assembly names for runnable .NET samples on macOS
| name | workflow-dispatch-validation-routing |
| description | Keep mixed validation/release GitHub workflow dispatch inputs from misrouting validation runs |
| domain | release-engineering |
| confidence | high |
| source | morpheus-earned |
In a GitHub Actions workflow that serves both validation-only packaging and upload-ready release packaging:
version field is non-empty.validation as a fixed CI-only path that always emits <release-version>-ci.<run-number> artifacts.version input to empty for validation runs, then emit a notice instead of failing.libraries, analyzers, cli) consume the explicit version override, or fall back to the canonical version source when blank.GitHub Actions forms preserve prior input values, so gating first on “version provided” can accidentally turn validation into a release-mode failure. Group-first routing plus normalization protects zero-config validation, keeps release intent explicit, and removes a class of operator error without adding another workflow.