Skip to content
Open
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
49 changes: 49 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
---
name: Bug Report
about: Report a bug to help us improve
title: "[Bug] "
labels: bug
assignees: ''
---

### Environment

- **SDK Version**: (e.g., V2 / V3)
- **SDK Package Version**: (e.g., 2.0.5)
- **Python Version**: (e.g., 3.10 / 3.12 / 3.13)
- **Nacos Server Version**: (e.g., 2.4.0)
- **OS**: (e.g., Ubuntu 22.04 / macOS 15 / Windows 11)

### Describe the Bug

A clear and concise description of what the bug is.

### Steps to Reproduce

1.
2.
3.

### Minimal Reproducible Code

```python
# Paste your code here
```

### Expected Behavior

A clear and concise description of what you expected to happen.

### Actual Behavior

A clear and concise description of what actually happened.

### Error Logs / Stack Trace

```
Paste any relevant logs or stack traces here
```

### Additional Context

Add any other context about the problem here.
5 changes: 5 additions & 0 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
blank_issues_enabled: true
contact_links:
- name: Documentation
url: https://nacos.io/docs/latest/what-is-nacos/
about: Please check the Nacos documentation before asking a question.
33 changes: 33 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
---
name: Feature Request
about: Suggest a new feature or enhancement
title: "[Feature] "
labels: enhancement
assignees: ''
---

### SDK Version

- [ ] V2
- [ ] V3
- [ ] Both

### Description

A clear and concise description of the feature you'd like.

### Use Case

Describe the problem or use case that this feature would address.

### Proposed Solution

A clear and concise description of what you want to happen.

### Alternatives Considered

A clear and concise description of any alternative solutions or features you've considered.

### Additional Context

Add any other context or screenshots about the feature request here.
29 changes: 29 additions & 0 deletions .github/ISSUE_TEMPLATE/question.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
---
name: Question
about: Ask a question about usage or configuration
title: "[Question] "
labels: question
assignees: ''
---

### SDK Version

V2 / V3

### Description

A clear and concise description of your question.

### What Have You Tried

Describe what you've already tried or researched.

### Relevant Code or Configuration

```python
# Paste your code here if applicable
```

### Additional Context

Add any other context about the question here.
21 changes: 21 additions & 0 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
### What type of PR is this?

- [ ] Bug fix
- [ ] New feature
- [ ] Enhancement
- [ ] Refactoring
- [ ] Documentation
- [ ] CI/CD
- [ ] Other

### What does this PR do?

<!-- A brief description of the changes. -->

### Which issue(s) does this PR fix?

<!-- Link to the related issue(s). e.g., Fixes #123 -->

### How has this been tested?

<!-- Describe the testing you have done. -->
Loading