From b4ede7552237ce433fbc29d1cb0b764c474272e9 Mon Sep 17 00:00:00 2001 From: Lovell Fuller Date: Tue, 2 Apr 2019 22:32:06 +0100 Subject: [PATCH] Add issue templates (#1639) --- .github/ISSUE_TEMPLATE/feature_request.md | 18 ++++++++++++++++++ .github/ISSUE_TEMPLATE/installation.md | 14 ++++++++++++++ .github/ISSUE_TEMPLATE/possible-bug.md | 18 ++++++++++++++++++ .github/ISSUE_TEMPLATE/question.md | 16 ++++++++++++++++ 4 files changed, 66 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/feature_request.md create mode 100644 .github/ISSUE_TEMPLATE/installation.md create mode 100644 .github/ISSUE_TEMPLATE/possible-bug.md create mode 100644 .github/ISSUE_TEMPLATE/question.md diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md new file mode 100644 index 00000000..f771543e --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -0,0 +1,18 @@ +--- +name: Feature request +about: Suggest an idea +title: '' +labels: enhancement +assignees: '' + +--- + +What are you trying to achieve? + +Have you searched for similar feature requests? + +What would you expect the API to look like? + +What alternatives have you considered? + +Is there a sample image that helps explain? diff --git a/.github/ISSUE_TEMPLATE/installation.md b/.github/ISSUE_TEMPLATE/installation.md new file mode 100644 index 00000000..f7bc3cba --- /dev/null +++ b/.github/ISSUE_TEMPLATE/installation.md @@ -0,0 +1,14 @@ +--- +name: Installation +about: For help if something went wrong installing sharp +title: '' +labels: '' +assignees: '' + +--- + +What is the output of running `npm install --verbose sharp`? + +What is the output of running `npx envinfo --binaries --languages --system --utilities`? + +Have you ensured the platform and version of Node.js used for `npm install` is the same as the platform and version of Node.js used at runtime? diff --git a/.github/ISSUE_TEMPLATE/possible-bug.md b/.github/ISSUE_TEMPLATE/possible-bug.md new file mode 100644 index 00000000..5ac4157a --- /dev/null +++ b/.github/ISSUE_TEMPLATE/possible-bug.md @@ -0,0 +1,18 @@ +--- +name: Possible bug +about: Please provide steps to reproduce +title: '' +labels: '' +assignees: '' + +--- + +What is the output of running `npx envinfo --binaries --languages --system --utilities`? + +What are the steps to reproduce? + +What is the expected behaviour? + +Are you able to provide a standalone code sample, without other dependencies, that demonstrates this problem? + +Are you able to provide a sample image that helps explain the problem? diff --git a/.github/ISSUE_TEMPLATE/question.md b/.github/ISSUE_TEMPLATE/question.md new file mode 100644 index 00000000..7478b44e --- /dev/null +++ b/.github/ISSUE_TEMPLATE/question.md @@ -0,0 +1,16 @@ +--- +name: Question +about: For help with an existing feature +title: '' +labels: question +assignees: '' + +--- + +What are you trying to achieve? + +Have you searched for similar questions? + +Are you able to provide a standalone code sample that demonstrates this question? + +Are you able to provide a sample image that helps explain the question?