From 79f5441a400de77be426b612fc21987e1a9794b5 Mon Sep 17 00:00:00 2001 From: Ryan Christian <33403762+rschristian@users.noreply.github.com> Date: Wed, 22 May 2024 01:24:38 -0500 Subject: [PATCH] chore: Add issue templates to the repo (#550) * chore: Create feature-request.md * chore: Create bug-report.md * chore: Formatting --- .github/ISSUE_TEMPLATE/bug-report.md | 30 +++++++++++++++++++++++ .github/ISSUE_TEMPLATE/feature-request.md | 13 ++++++++++ 2 files changed, 43 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/bug-report.md create mode 100644 .github/ISSUE_TEMPLATE/feature-request.md diff --git a/.github/ISSUE_TEMPLATE/bug-report.md b/.github/ISSUE_TEMPLATE/bug-report.md new file mode 100644 index 00000000..19d433e4 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug-report.md @@ -0,0 +1,30 @@ +--- +name: Bug report +about: Create a report to help us improve +title: '' +labels: '' +assignees: '' +--- + +- [ ] Check if updating to the latest version resolves the issue + +**Environment** +- [ ] I am using `@preact/signals-core` +- [ ] I am using `@preact/signals` +- [ ] I am using `@preact/signals-react` + - [ ] I understand usage changed in v2, and I've followed the [React Integration instructions](https://github.com/preactjs/signals/tree/chore/issue-templates/packages/react#react-integration) + +**Describe the bug** +A clear and concise description of what the bug is. + +**To Reproduce** +Please provide a link to a StackBlitz/CodeSandbox/Codepen project or a GitHub repository that demonstrates the issue. + +Steps to reproduce the behavior: + +1. Go to '...' +2. Click on '....' +3. See error + +**Expected behavior** +What should have happened when following the steps above? diff --git a/.github/ISSUE_TEMPLATE/feature-request.md b/.github/ISSUE_TEMPLATE/feature-request.md new file mode 100644 index 00000000..ec701093 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature-request.md @@ -0,0 +1,13 @@ +--- +name: Feature request +about: Suggest an idea for this project +title: '' +labels: feature request +assignees: '' +--- + +**Describe the feature you'd love to see** +A clear and concise description of what you'd love to see added to Preact Signals. + +**Additional context (optional)** +Add any other context or screenshots about the feature request here.