[scanner] fix: add repository topics for discoverability (#19404)#19416
Conversation
Fixes #19404 Adds .github/settings.yml with repository topics so the repo appears in searches for kubernetes, kubestellar, multicluster, cloud-native, and related terms. Signed-off-by: Copilot <223556219+Copilot@users.noreply.github.com> Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
|
[APPROVALNOTIFIER] This PR is NOT APPROVED This pull-request has been approved by: The full list of commands accepted by this bot can be found here. DetailsNeeds approval from an approver in each of these files:Approvers can indicate their approval by writing |
✅ Deploy Preview for kubestellarconsole canceled.
|
|
👋 Hey @clubanderson — thanks for opening this PR!
This is an automated message. |
|
🐝 Hi @clubanderson! I'm Trusted users — org members and contributors with write access — can mention Automation may take a moment to start, and follow-up happens through workflow activity rather than chat replies. |
There was a problem hiding this comment.
Pull request overview
This PR adds declarative repository metadata so GitHub topics can be managed in version control (via the Probot Settings app), improving kubestellar/console discoverability in GitHub topic search.
Changes:
- Add
.github/settings.ymlto define repository topics for automated syncing. - Populate an initial set of topics intended to improve search discoverability.
| topics: | ||
| - kubernetes | ||
| - kubestellar | ||
| - console | ||
| - dashboard | ||
| - multicluster | ||
| - edge-computing | ||
| - cloud-native | ||
| - cncf | ||
| - react | ||
| - nextjs |
|
Thank you for your contribution! Your PR has been merged. Check out what's new:
Stay connected: Slack #kubestellar-dev | Multi-Cluster Survey |
|
Post-merge build verification passed ✅ Both Go and frontend builds compiled successfully against merge commit |
Summary
Fixes #19404 — GitHub repository topics absent, zero discoverability.
Changes
Adds
.github/settings.ymlwith repository topics. When the Probot Settings app is installed, these topics are automatically synced to the repository, making it discoverable via searches for:kubernetes,kubestellar,console,dashboardmulticluster,edge-computing,cloud-native,cncfreact,nextjsWhy a settings.yml?
Direct API access to set topics is not available in this environment. The
.github/settings.ymlapproach is the standard declarative, code-reviewed, and auditable way to manage repository metadata — ensuring topics stay consistent and are tracked in version control.