원클릭으로
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.