[copilot] Restore workflow_dispatch trigger for Copilot coding agent#356
Merged
jonathanpeppers merged 1 commit intomainfrom May 6, 2026
Merged
Conversation
3f67abf to
8f0e1c9
Compare
The copilot-setup-steps.yml has always used `on: pull_request` with a paths filter, meaning the Copilot coding agent never had proper setup steps. Restore the `on: workflow_dispatch` trigger so the agent gets the right build environment when assigned to issues. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
8f0e1c9 to
7411221
Compare
Contributor
There was a problem hiding this comment.
Pull request overview
Restores the GitHub Actions trigger needed for the Copilot coding agent to run the repository’s setup workflow when invoked manually (e.g., when the agent is used outside PR validation).
Changes:
- Renamed the workflow display name.
- Switched the workflow trigger to
workflow_dispatch(manual invocation). - Removed the previous
pull_requestpath-filtered CI trigger and the explicitpermissionsblock.
simonrozsival
approved these changes
May 6, 2026
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.
The
copilot-setup-steps.ymlwas introduced in #307 withon: pull_request(CI validation only) and has never hadon: workflow_dispatch. This means the Copilot coding agent has no setup steps when assigned to issues -- it won't have .NET orgh-awavailable.This restores the standard
on: workflow_dispatchtrigger so the Copilot coding agent gets the right build environment.