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
23 changes: 16 additions & 7 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -1,26 +1,35 @@
---
name: Bug report
about: Describe an unexpected bug
title: ''
about: Report a bug in InterBTC
labels: bug
assignees: ''

---

**Describe the bug**
A clear and concise description of what the bug is.

**Component / Module**
Which area is affected? (e.g. vaults, oracle, parachain runtime, relayer, UI)

**To Reproduce**
Steps to reproduce the behavior:
1. Run with these arguments '...'
2. Call this function '....'
2. Call this function '...'
3. See error

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

**Version / Commit (e.g. 1.0.0):**
The version of the binary you have installed.
**Version / Commit**
Provide the version, commit hash, or release tag.

**Environment**
- OS: [e.g. Ubuntu/Debian/macOS]
- Rust version:
- Node version (if applicable):
- Network: [mainnet/testnet/devnet]

**Logs / stack traces**
Include relevant logs or stack traces.

**Additional context**
Add any other context about the problem here.
15 changes: 11 additions & 4 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,7 @@
---
name: Feature request
about: Suggest an idea for this project
title: ''
about: Suggest a new feature or improvement for InterBTC
labels: enhancement
assignees: ''

---

**Is your feature request related to a problem? Please describe.**
Expand All @@ -16,5 +13,15 @@ A clear and concise description of what you want to happen.
**Describe alternatives you've considered**
A clear and concise description of any alternative solutions or features you've considered.

**Area**
Which area does this relate to?
- [ ] Vaults
- [ ] Oracle
- [ ] Parachain runtime
- [ ] RPC/API
- [ ] UI/Frontend
- [ ] Docs
- [ ] Other (please specify)

**Additional context**
Add any other context or screenshots about the feature request here.
25 changes: 17 additions & 8 deletions .github/PULL_REQUEST_TEMPLATE/pull_request.md
Original file line number Diff line number Diff line change
@@ -1,17 +1,26 @@
# Description
## Title
```
[PR Title Here]
```

Please include a summary of the changes and the related issue. Please also include relevant motivation and context.

Closes # (issue)
## Description
```
[PR Description Here]
```

## Changes

[List your changes here]
- [ ] Runtime/logic changes
- [ ] RPC/API changes
- [ ] UI changes
- [ ] Docs
- [ ] Tests

## Checklist

- [ ] Added relevant unit / integration tests
- [ ] Updated benchmarks for worst-case complexity
- [ ] PR does not introduce unchecked arithmetic
- [ ] PR does not introduce unbounded operations / storage
- [ ] Implements extra fees or storage deposits (if necessary)
- [ ] Implements extra fees or storage deposits (if necessary)

## Related Issues
Closes # (issue)