-
Notifications
You must be signed in to change notification settings - Fork 17
feat: Add maui-startup-profiling skill for PR #60 #85
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -2,8 +2,9 @@ | |||||||||
| description: | | ||||||||||
| Analyzes merged pull requests for documentation needs. When a PR is merged, | ||||||||||
| this workflow reviews the changes and determines if documentation updates are | ||||||||||
| needed on dotnet/docs-maui. If updates are needed, it opens a draft PR directly | ||||||||||
| on docs-maui. If not, it comments on the source PR explaining why. | ||||||||||
| needed on dotnet/docs-maui. If updates are needed, it opens an issue on | ||||||||||
| docs-maui describing the suggested changes. If not, it comments on the source | ||||||||||
| PR explaining why. | ||||||||||
|
|
||||||||||
| on: | ||||||||||
| pull_request: | ||||||||||
|
|
@@ -55,12 +56,10 @@ tools: | |||||||||
|
|
||||||||||
| safe-outputs: | ||||||||||
| github-token: ${{ secrets.MAUI_BOT_TOKEN }} | ||||||||||
| create-pull-request: | ||||||||||
| title-prefix: "[maui-labs] " | ||||||||||
| create-issue: | ||||||||||
| title-prefix: "[maui-labs docs] " | ||||||||||
| labels: [docs-from-code] | ||||||||||
| draft: true | ||||||||||
| target-repo: "dotnet/docs-maui" | ||||||||||
|
||||||||||
| target-repo: "dotnet/docs-maui" | |
| target-repo: "dotnet/docs-maui" | |
| max: 1 | |
| close-older-issues: true |
Copilot
AI
Apr 16, 2026
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This section now directs the agent to open an issue, but earlier text still refers to opening a "docs PR" and says "Draft PRs are cheap". Update the remaining wording in the file to consistently describe the issue-based workflow (and avoid the agent deciding it should create a PR anyway).
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
pr-docs-check.lock.ymlis still configured to usecreate_pull_requestwith a "[maui-labs]" title prefix and draft PR behavior. With this prompt switching tocreate-issueand a different title prefix, the locked workflow will keep doing the old behavior (or the agent will request a tool that isn't allowlisted). Regenerate/update the lock workflow to match the newsafe-outputsand tool expectations.