ci: add workflow_dispatch trigger to Validate workflow#52
Merged
Conversation
Replace the MCP server (`archgate mcp`) with direct CLI commands. Skills now invoke `archgate review-context`, `archgate session-context claude-code`, and `archgate session-context cursor` via shell instead of MCP tool calls. New files: - src/helpers/session-context.ts — business logic extracted from MCP tools - src/commands/review-context.ts — replaces MCP review_context tool - src/commands/session-context/ — replaces MCP session context tools Removed: - src/mcp/ (server, resources, 6 tools) - src/commands/mcp.ts - @modelcontextprotocol/sdk dependency - .mcp.json, .cursor/mcp.json - All MCP tests (10 files) Updated: - Editor settings (claude-settings.ts, cursor-settings.ts) — no MCP config - 7 ADRs — removed MCP references - CLAUDE.md — updated command table Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Allows manual triggering of validation, useful when automated PR events are not fired (e.g., release PRs created by GitHub Actions). Commitlint step is skipped on manual dispatch since no PR title is available. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Add workflow_call trigger to the Validate workflow so the release workflow can invoke it after creating the release PR. This ensures release PRs get validated even when GitHub's cascading event restrictions prevent the pull_request trigger from firing. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
workflow_dispatchtrigger to the Validate workflow, allowing manual runs from the Actions tabifcondition to also run onworkflow_dispatchThis is useful when release PRs created by GitHub Actions don't automatically trigger the Validate workflow due to GitHub's cascading event restrictions.
Test plan
🤖 Generated with Claude Code