From c01edec88d3c83cd91335e203e47096cf100ae32 Mon Sep 17 00:00:00 2001 From: Pascal Hartig Date: Mon, 29 Apr 2019 08:07:39 -0700 Subject: [PATCH] Add issue templates Summary: Pull Request resolved: https://github.com/facebook/flipper/pull/418 Reviewed By: danielbuechele Differential Revision: D15120797 Pulled By: passy fbshipit-source-id: 196aafe8f228a52bd20dc492c3754675259f389a --- .github/ISSUE_TEMPLATE/bug_report.md | 29 +++++++++++++++++++++++++ .github/ISSUE_TEMPLATE/discussion.md | 7 ++++++ .github/ISSUE_TEMPLATE/documentation.md | 8 +++++++ .github/ISSUE_TEMPLATE/question.md | 7 ++++++ 4 files changed, 51 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/bug_report.md create mode 100644 .github/ISSUE_TEMPLATE/discussion.md create mode 100644 .github/ISSUE_TEMPLATE/documentation.md create mode 100644 .github/ISSUE_TEMPLATE/question.md diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md new file mode 100644 index 000000000..f12c31594 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -0,0 +1,29 @@ +--- +name: "🐛 Bug Report" +about: You want to report a reproducible bug or regression in Flipper. +title: '' +labels: 'Type: Bug Report' + +--- + +## 🐛 Bug Report + + +## To Reproduce + + +## Expected Behavior + + +## Environment + diff --git a/.github/ISSUE_TEMPLATE/discussion.md b/.github/ISSUE_TEMPLATE/discussion.md new file mode 100644 index 000000000..888e83419 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/discussion.md @@ -0,0 +1,7 @@ +--- +name: "🚀 Discussion" +about: You have an idea that could make Flipper better, or you want to discuss some aspect of the app or SDK. +title: 'Discussion: ' +labels: 'Type: Discussion' + +--- diff --git a/.github/ISSUE_TEMPLATE/documentation.md b/.github/ISSUE_TEMPLATE/documentation.md new file mode 100644 index 000000000..36d92acbd --- /dev/null +++ b/.github/ISSUE_TEMPLATE/documentation.md @@ -0,0 +1,8 @@ +--- +name: "📃 Documentation Bug" +about: You want to report something that is wrong or missing from the documentation. +title: 'Docs:' +labels: 'Type: Docs' + +--- + diff --git a/.github/ISSUE_TEMPLATE/question.md b/.github/ISSUE_TEMPLATE/question.md new file mode 100644 index 000000000..803bbc91d --- /dev/null +++ b/.github/ISSUE_TEMPLATE/question.md @@ -0,0 +1,7 @@ +--- +name: "🤔 Questions and Help" +about: You need help writing your Flipper plugin or integrating Flipper with your app. +title: 'Question: ' +labels: 'Type: Question' + +---