-
Notifications
You must be signed in to change notification settings - Fork 0
Rebrand README for ProxySQL LLC maintainership #14
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 | ||||
|---|---|---|---|---|---|---|
| @@ -1,19 +1,13 @@ | ||||||
|  | ||||||
|  | ||||||
|  | ||||||
| [](https://github.com/openark/orchestrator/releases) [](https://github.com/openark/orchestrator/releases) | ||||||
|  | ||||||
|  | ||||||
|  | ||||||
| [](https://github.com/proxysql/orchestrator/releases) [](https://github.com/proxysql/orchestrator/releases) | ||||||
|
|
||||||
| > **NOTE:** This is a fork of the abandoned [Orchestrator](https://github.com/openark/orchestrator) project. Percona is not the public maintainer of the Orchestrator project. We modify this fork almost exclusively for use in our Kubernetes Operators, but we make our changes available to the open-source community if they suit your needs. | ||||||
| > **Maintained by [ProxySQL LLC](https://proxysql.com).** Orchestrator is actively maintained and open to contributions. We believe in orchestrator's potential as the go-to MySQL HA tool, especially when paired with ProxySQL. Bug reports, feature requests, and pull requests are welcome — see [CONTRIBUTING.md](CONTRIBUTING.md) to get started. | ||||||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🧩 Analysis chain🏁 Script executed: #!/bin/bash
# Description: Verify governance files referenced in README exist
echo "Checking for governance files..."
for file in CONTRIBUTING.md CODE_OF_CONDUCT.md SECURITY.md MAINTAINERS.md; do
if [ -f "$file" ]; then
echo "✓ $file exists"
else
echo "✗ $file NOT found"
fi
done
echo -e "\nIf files are missing, consider:"
echo "1. Merging Task 3 first (as noted in PR test plan)"
echo "2. Or add a comment in the Community section: '(governance files coming in #<task3-pr-number>)'"Repository: ProxySQL/orchestrator Length of output: 387 Governance files are missing, creating broken links in the README. The governance files referenced in line 6 (CONTRIBUTING.md) and the Community section (CONTRIBUTING.md, CODE_OF_CONDUCT.md, SECURITY.md, MAINTAINERS.md) do not exist in the current branch, so the links will be broken when this PR merges. Since the PR test plan indicates these files "will work once Task 3 merges," either:
🤖 Prompt for AI Agents |
||||||
|
|
||||||
| >We are not currently entertaining external enhancements or feature requests. We do, however, believe Orchestrator has potential and are open to exploring its future as a community-driven project. We welcome collaboration with interested organizations. Our priority is determining whether sufficient resources (time and funding) can be secured to ensure Orchestrator's continued maintenance and development. We're open to discussing potential partnerships with organizations who might be interested in supporting this effort. | ||||||
| # orchestrator [[Documentation]](https://github.com/proxysql/orchestrator/tree/master/docs) | ||||||
|
||||||
| # orchestrator [[Documentation]](https://github.com/proxysql/orchestrator/tree/master/docs) | |
| # orchestrator [[Documentation]](docs/) |
Copilot
AI
Mar 23, 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 second documentation link also hard-codes tree/master/docs. For consistency and to prevent branch-name related breakage, switch this to the same relative docs link used elsewhere in the README (e.g., docs/).
| Read the [Orchestrator documentation](https://github.com/proxysql/orchestrator/tree/master/docs) | |
| Read the [Orchestrator documentation](docs/) |
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.
The year 2026 is in the future and appears to be a typo. To avoid confusion, I suggest removing the year for now, making it consistent with the format of the 'Maintained by Percona' line. The correct year can be added later.
| Maintained since 2026 by [ProxySQL LLC](https://proxysql.com) as https://github.com/proxysql/orchestrator | |
| Maintained by [ProxySQL LLC](https://proxysql.com) as https://github.com/proxysql/orchestrator |
Copilot
AI
Mar 23, 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.
The new Community links point to CONTRIBUTING.md, CODE_OF_CONDUCT.md, SECURITY.md, and MAINTAINERS.md, but those files are not present in this repo. This makes the README links 404. Either add these governance files in this PR, or update the links to existing equivalents (e.g., docs/contributions.md, docs/security.md) and omit links that don’t exist yet.
| - [Maintainers](MAINTAINERS.md) — current project maintainers | |
| - Maintainers — current project maintainers |
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.
Add alt text to badge images for accessibility.
The CI/workflow badge images lack alt text, which prevents screen reader users from understanding the build status. Line 4 demonstrates the correct pattern with descriptive alt text.
♿ Proposed fix to add descriptive alt text
🧰 Tools
🪛 markdownlint-cli2 (0.21.0)
[warning] 1-1: Images should have alternate text (alt text)
(MD045, no-alt-text)
[warning] 2-2: Images should have alternate text (alt text)
(MD045, no-alt-text)
[warning] 3-3: Images should have alternate text (alt text)
(MD045, no-alt-text)
🤖 Prompt for AI Agents