From 256deeae1487d5d7a488b3c50505775b0a1be510 Mon Sep 17 00:00:00 2001 From: "Fred K. Schott" Date: Sun, 19 Feb 2017 13:57:39 -0800 Subject: [PATCH] add ISSUE_TEMPLATE, move PR template --- .github/ISSUE_TEMPLATE.md | 54 +++++++++++++++++++ .../PULL_REQUEST_TEMPLATE.md | 0 2 files changed, 54 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE.md rename PULL_REQUEST_TEMPLATE.md => .github/PULL_REQUEST_TEMPLATE.md (100%) diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md new file mode 100644 index 000000000..70e7521ee --- /dev/null +++ b/.github/ISSUE_TEMPLATE.md @@ -0,0 +1,54 @@ + + + + +### Request Options + + +```js +request({ + url: 'http://example.com', // a public URL that we can hit to reproduce, if possible + more: { 'options': 'here' } +}, +``` + +### Expected Behavior + + + + +### Current Behavior + + + +### Possible Solution + + + +### Context + + + +### Your Environment + + +| software | version +| ---------------- | ------- +| request | +| node | +| npm | +| Operating System | diff --git a/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md similarity index 100% rename from PULL_REQUEST_TEMPLATE.md rename to .github/PULL_REQUEST_TEMPLATE.md