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
39 changes: 39 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
---
name: 🐛 Bug Report
about: Report a bug or unexpected behavior
title: '[Bug]: '
labels: ['bug', 'needs-triage']
assignees: []
---

## Bug Description
<!-- A clear and concise description of the bug -->

## Steps to Reproduce
1.
2.
3.

## Expected Behavior
<!-- What you expected to happen -->

## Actual Behavior
<!-- What actually happened -->

## Environment
- **Object UI Version**: <!-- e.g., 0.1.0 -->
- **React Version**: <!-- e.g., 18.3.1 -->
- **Node Version**: <!-- e.g., 20.x -->
- **Browser**: <!-- e.g., Chrome 120 -->
- **OS**: <!-- e.g., macOS 14.0 -->

## Reproduction
<!-- If possible, provide a minimal reproduction -->
<!-- You can use CodeSandbox, StackBlitz, or a GitHub repo -->

## Additional Context
<!-- Add any other context about the problem here -->
<!-- Screenshots are helpful! -->

## Possible Solution
<!-- Optional: Suggest a fix or reason for the bug -->
11 changes: 11 additions & 0 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
blank_issues_enabled: false
contact_links:
- name: 💬 Discord Community
url: https://discord.gg/objectstack
about: Join our Discord community for questions and discussions
- name: 📖 Documentation
url: https://www.objectui.org
about: Check our documentation for guides and API references
- name: 💡 Feature Request
url: https://github.com/objectstack-ai/objectui/discussions/categories/ideas
Copy link

Copilot AI Jan 15, 2026

Choose a reason for hiding this comment

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

Similar to the cliff.toml issue, this URL references objectstack-ai organization, but other parts of the codebase suggest the repository might be under a different organization. Verify the correct GitHub organization and repository path.

Suggested change
url: https://github.com/objectstack-ai/objectui/discussions/categories/ideas
url: https://github.com/objectql/objectui/discussions/categories/ideas

Copilot uses AI. Check for mistakes.
about: Share your ideas and feature requests in discussions
32 changes: 32 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
---
name: ✨ Feature Request
about: Suggest a new feature or enhancement
title: '[Feature]: '
labels: ['enhancement', 'needs-triage']
assignees: []
---

## Feature Description
<!-- A clear and concise description of the feature you'd like -->

## Problem Statement
<!-- What problem does this feature solve? -->
<!-- Example: "I'm always frustrated when..." -->

## Proposed Solution
<!-- Describe how you envision this feature working -->

## Alternative Solutions
<!-- Any alternative solutions or features you've considered -->

## Use Cases
<!-- Provide specific use cases where this feature would be helpful -->

## Additional Context
<!-- Add any other context, mockups, or examples about the feature request -->

## Would you be willing to contribute?
<!-- Let us know if you'd like to help implement this feature -->
- [ ] Yes, I'm willing to contribute
- [ ] No, but I'd like to help test it
- [ ] No, but I'd love to see it implemented
70 changes: 70 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,70 @@
## Description
<!-- Provide a brief description of the changes in this PR -->

## Type of Change
<!-- Mark the relevant option with an "x" -->

- [ ] 🐛 Bug fix (non-breaking change which fixes an issue)
- [ ] ✨ New feature (non-breaking change which adds functionality)
- [ ] 💥 Breaking change (fix or feature that would cause existing functionality to not work as expected)
- [ ] 📝 Documentation update
- [ ] 🎨 Style/UI update (no functional changes)
- [ ] ♻️ Refactoring (no functional changes)
- [ ] ⚡ Performance improvement
- [ ] ✅ Test update
- [ ] 🔧 Build/configuration change
- [ ] 🔒 Security fix

## Related Issues
<!-- Link related issues here using #issue_number -->

Closes #
Related to #

## Changes Made
<!-- List the main changes made in this PR -->

-
-
-

## Screenshots (if applicable)
<!-- Add screenshots to help explain your changes -->

## Testing
<!-- Describe the tests you ran and how to reproduce them -->

### Test Environment
- **Node Version**:
- **pnpm Version**:
- **OS**:

### Test Steps
1.
2.
3.

## Checklist
<!-- Mark completed items with an "x" -->

- [ ] My code follows the project's code style
- [ ] I have performed a self-review of my code
- [ ] I have commented my code, particularly in hard-to-understand areas
- [ ] I have made corresponding changes to the documentation
- [ ] My changes generate no new warnings
- [ ] I have added tests that prove my fix is effective or that my feature works
- [ ] New and existing unit tests pass locally with my changes
- [ ] Any dependent changes have been merged and published

## Breaking Changes
<!-- If this PR introduces breaking changes, describe them here -->

None

## Migration Guide
<!-- If applicable, provide a migration guide for breaking changes -->

N/A

## Additional Notes
<!-- Add any additional notes or context about the PR -->
Loading
Loading