Skip to content

Commit eeade3f

Browse files
authored
Add issue and PR templates (#571)
* docs: add issue template * docs: add PR template * docs: add database options
1 parent 362b489 commit eeade3f

File tree

2 files changed

+58
-0
lines changed

2 files changed

+58
-0
lines changed

.github/ISSUE_TEMPLATE.md

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
### Version
2+
Please specify the versions you are using. Exact version numbers are preferred.
3+
- Pymyrepl (e.g., 1.0.2):
4+
- OS (e.g., Ubuntu 18.04):
5+
- Database and version (Remove unnecessary options):
6+
- MySQL:
7+
- MariaDB:
8+
- Percona:
9+
10+
### System Variables
11+
List relevant system variables using the query `SHOW VARIABLES LIKE '<variable_name_here>';`
12+
- `log_bin`:
13+
- `binlog_format`:
14+
- `binlog_row_image`:
15+
- `enforce_gtid_consistency`:
16+
- `gtid_mode`:
17+
18+
If you are using MySQL 8.0.14 or later, please also provide the following variables:
19+
- `binlog_row_metadata`:
20+
- `binlog_row_value_options`:
21+
22+
### Symptoms
23+
<!--Provide a description of the issue. Include error messages if available.-->
24+
25+
### Steps to Reproduce
26+
<!--Provide a clear and detailed list of steps to reproduce the issue.-->
27+
28+
### Expected Outcome
29+
<!--Describe what you expected to happen.-->
30+
31+
### Actual Outcome
32+
<!--Describe what actually happened.-->
33+
34+
### Planning to Resolve
35+
<!--Please check one of the following:-->
36+
- [ ] I plan to create a pull request to resolve this issue.
37+
- [ ] I don't plan to resolve this myself and would like someone else to address it.

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
### Description
2+
<!--Please describe your pull request as detailed as possible. Include information on what problem it solves, what features it adds, etc.-->
3+
4+
### Type of Change
5+
- [ ] Bug fix
6+
- [ ] New feature
7+
- [ ] Documentation update
8+
- [ ] Other (please specify below)
9+
10+
### Checklist
11+
- [ ] I have read and understood the [CONTRIBUTING.md](https://github.com/julien-duponchelle/python-mysql-replication/blob/main/CONTRIBUTING.md) document.
12+
- [ ] I have checked there aren't any other open [Pull Requests](https://github.com/julien-duponchelle/python-mysql-replication/pulls) for the desired changes.
13+
- [ ] This PR resolves an issue #[Issue Number Here].
14+
15+
### Tests
16+
- [ ] All tests have passed.
17+
- [ ] New tests have been added to cover the changes. (describe below if applicable).
18+
19+
### Additional Information
20+
<!--If there's any additional information or context you'd like to provide for this PR, such as screenshots, reference documents, or release notes, please include them here.-->
21+

0 commit comments

Comments
 (0)