Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 0 additions & 19 deletions .github/ISSUE_TEMPLATE.md

This file was deleted.

57 changes: 57 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
---
name: Bug Report
about: Report a bug
labels: bug
---

## Bug Report

### Orchestrator version

<!-- Output of `orchestrator --version` -->

### Backend

<!-- MySQL or SQLite? -->

### Configuration

<!-- Paste your orchestrator.conf.json below (sanitized — remove passwords and sensitive hostnames) -->

```json

```

### Topology

<!-- Paste the output of `orchestrator-client -c topology -alias my-cluster` -->

```

```

### Steps to reproduce

1.
2.
3.

### Expected behavior

<!-- What did you expect to happen? -->

### Actual behavior

<!-- What happened instead? -->

### Logs

<!-- Please include relevant orchestrator logs. Use `--debug --stack` for maximum verbosity. -->

```

```

### Additional context

<!-- Any other information that might be helpful (OS, MySQL version, raft/non-raft mode, etc.) -->
23 changes: 23 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
---
name: Feature Request
about: Suggest a new feature
labels: enhancement
---

## Feature Request

### Problem description / use case

<!-- What problem are you trying to solve? Why is this feature needed? -->

### Proposed solution

<!-- How do you envision this feature working? -->

### Alternatives considered

<!-- Have you considered any alternative solutions or workarounds? -->

### Additional context

<!-- Any other information, mockups, or references that might be helpful. -->
11 changes: 11 additions & 0 deletions .github/ISSUE_TEMPLATE/question.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
---
name: Question
about: Ask a question about orchestrator
labels: question
---

## Question

<!-- Please check the documentation first: https://github.com/proxysql/orchestrator/tree/master/docs -->

<!-- Ask your question below. Include as much context as possible (version, setup, what you've tried). -->
34 changes: 10 additions & 24 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -1,31 +1,17 @@
<!--
## A Pull Request should be associated with an Issue.

> We wish to have discussions in Issues. A single issue may be targeted by multiple PRs.
> If you're offering a new feature or fixing anything, we'd like to know beforehand in Issues,
> and potentially we'll be able to point development in a particular direction.
Thank you! We are open to PRs, but please understand if for technical reasons we are unable to accept each and any PR
-->

Related issue: https://github.com/openark/orchestrator/issues/0123456789
## Pull Request

Related issue: https://github.com/proxysql/orchestrator/issues/
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

To make it clearer for contributors, consider adding a placeholder for the issue number in the Related issue link. This would guide them on where to insert the relevant issue ID.

Suggested change
Related issue: https://github.com/proxysql/orchestrator/issues/
Related issue: https://github.com/proxysql/orchestrator/issues/<ISSUE_NUMBER>

Copy link

Copilot AI Mar 23, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Related issue: currently points to the repository’s issue list, not to an actual issue (and doesn’t provide a placeholder format). Update this to an issue reference placeholder that GitHub will auto-link (e.g., Related issue: #<number> / Closes #<number>), so PRs consistently connect to a specific tracking issue.

Suggested change
Related issue: https://github.com/proxysql/orchestrator/issues/
Related issue: #<issue-number>

Copilot uses AI. Check for mistakes.

### Description

This PR [briefly explain what is does]

<!--
Please make sure that:
This PR [briefly explain what it does]

- [ ] contributed code is using same conventions as original code
### Checklist

Please make sure the PR passes CI tests. For your information, CI tests the following:
Please review the [contribution guidelines](CONTRIBUTING.md) before submitting.

- code is formatted via `gofmt` (please avoid `goimports`)
- code passes compilation
- code passes unit tests
- code passes integration tests with MySQL backend
- code passes integration tests with SQLite backend
- There are no orphaned docs/ pages (there's some link in the docs to point to any page)
- upgrade from previous version (`master` branch) is successful
-->
- [ ] Code formatted with `gofmt` (please avoid `goimports`)
- [ ] Tests added/updated
- [ ] CI passes (unit, integration, system tests)
- [ ] DCO sign-off included (`git commit -s`)
- [ ] Related issue linked above
Loading