Add "wiki" agentic workflow to exercise Windows runner integration - #56501
Merged
Conversation
Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com>
Copilot
AI
changed the title
Add "wiki" agentic workflow to test Windows runner integration
Add "wiki" agentic workflow to exercise Windows runner integration
Aug 28, 2026
Copilot created this pull request from a session on behalf of
pelikhan
August 28, 2026 03:46
View session
Collaborator
|
@copilot rename to "windows.md" - recompile |
Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com>
Contributor
Author
Contributor
There was a problem hiding this comment.
Pull request overview
Adds a low-cost workflow intended to exercise the Docker agent runtime on a Windows runner.
Changes:
- Adds a haiku-to-issue workflow with restricted safe outputs.
- Generates the Windows-hosted agent workflow.
- Registers centralized slash-command routing.
Show a summary per file
| File | Description |
|---|---|
.github/workflows/windows.md |
Defines the Windows integration workflow. |
.github/workflows/windows.lock.yml |
Contains the compiled GitHub Actions workflow. |
.github/workflows/agentic_commands.yml |
Registers centralized command routing. |
Review details
- Files reviewed: 2/3 changed files
- Comments generated: 2
- Review effort level: Balanced
Comment on lines
+503
to
+506
| run: | | ||
| if [ -z "${RUNNER_TOOL_CACHE:-}" ]; then | ||
| echo "RUNNER_TOOL_CACHE=${{ runner.tool_cache }}" >> "$GITHUB_ENV" | ||
| fi |
| # /summarize -> pdf-summary [issue_comment,issues] reaction=eyes | ||
| # /tidy -> tidy [pull_request_comment] reaction=eyes | ||
| # /unbloat -> unbloat-docs [pull_request_comment] reaction=eyes | ||
| # /wiki -> wiki [discussion,discussion_comment,issue_comment,issues,pull_request,pull_request_comment,pull_request_review_comment] reaction=eyes |
Contributor
|
🎉 This pull request is included in a new release. Release: |
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.
Adds a lightweight agentic workflow that pins the agent job to a Windows runner with the default Docker agent runtime, so Windows integration can be exercised end-to-end. The prompt is intentionally trivial (write a haiku, open one issue) on a small model to keep runs cheap.
Workflow (
.github/workflows/wiki.md)runs-on: windows-latestfor the agent job; framework jobs remain onubuntu-slim.sandbox.agent.runtimeomitted — setting it todockeris invalid)./wikislash command plusworkflow_dispatchwith an optionaltopicinput.model: copilot/gpt-5.4-mini,network: {},strict: true,timeout-minutes: 10.safe-outputs.create-issue(max: 1,[wiki]title prefix) as the only write path.concurrency.job-discriminator: ${{ github.run_id }}so concurrent dispatches don't share a conclusion slot.Compiled output (
.github/workflows/wiki.lock.yml)jobs.agent.runs-onresolves towindows-latest.Note
docs/src/content/docs/reference/frontmatter.mdstill listswindows-*as unsupported. Left unchanged deliberately — this workflow is the experiment that would inform whether that row should change.