ワンクリックで
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.