feat: link to open issues from each skill dashboard page - #2875
Merged
Conversation
Add a 'View open issues' link to each skill's detail page on the Skills dashboard. The link opens a GitHub issue search filtered to open issues labelled with the skill name (issue microsoft#2870). Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> Copilot-Session: 07e3ca5a-25a5-4116-bf5b-cf60473bad7a
Contributor
There was a problem hiding this comment.
Pull request overview
Adds an “open issues” deep-link from each skill’s detail header in the dashboard, using the skill name as a GitHub label filter to help contributors quickly find related work items.
Changes:
- Added an exported
issuesUrl(skillName)helper to generate a GitHub issues search URL scoped tostate:openandlabel:"<skill>". - Rendered a “View open issues for ↗” link in the skill detail header that opens in a new tab.
- Added CSS for the new link and unit tests covering URL construction/encoding.
Show a summary per file
| File | Description |
|---|---|
| dashboard/src/skills/App.tsx | Adds issuesUrl() and renders the new per-skill “open issues” link in the header. |
| dashboard/src/skills/skills.css | Styles the new issues link in the skill detail view. |
| dashboard/src/skills/tests/issuesUrl.test.ts | Adds unit tests validating URL base/query and encoding behavior. |
Review details
- Files reviewed: 3/3 changed files
- Comments generated: 3
- Review effort level: Low
RickWinter
reviewed
Jul 17, 2026
…shstick # Conflicts: # dashboard/src/skills/App.tsx # dashboard/src/skills/skills.css
- Move issuesUrl/ISSUES_REPO into src/skills/issuesUrl.ts so tests import without pulling in the React/recharts UI module - Add a title hint that the issues link opens in a new tab - Add a :focus-visible style for keyboard accessibility Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> Copilot-Session: 07e3ca5a-25a5-4116-bf5b-cf60473bad7a
RickWinter
reviewed
Jul 20, 2026
It is only referenced within issuesUrl.ts, so it does not need to be exported. Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> Copilot-Session: 07e3ca5a-25a5-4116-bf5b-cf60473bad7a
…shstick # Conflicts: # dashboard/src/skills/App.tsx
JasonYeMSFT
approved these changes
Jul 21, 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.
Resolves #2870.
What
Each skill page on the Skills dashboard now links to that skill's open GitHub issues, using the skill name as the issue label filter.
Changes
dashboard/src/skills/App.tsx— added an exportedissuesUrl(skillName)helper and a "View open issues for<skill>↗" link in the skill detail header. It targetsgithub.com/microsoft/GitHub-Copilot-for-Azure/issues?q=is:issue state:open label:"<skill-name>"(URL-encoded), opening in a new tab withrel="noopener noreferrer".dashboard/src/skills/skills.css— styling for.skills-issues-link.dashboard/src/skills/__tests__/issuesUrl.test.ts— unit tests for the URL helper (base URL, open/label query, special-character encoding).Notes
microsoft/GitHub-Copilot-for-Azure(no existing repo constant in the dashboard).Validation
npm test -- src/skills→ 17/17 pass.tsc --noEmit→ no new errors insrc/skills(one pre-existing unrelated error intoken-usage/App.tsxconfirmed present on baseline).