From 21142c28fc4ea6efb109be8b1bbbb2ee8c97fbee Mon Sep 17 00:00:00 2001 From: tomer doron Date: Mon, 15 Jun 2020 01:16:01 -0700 Subject: [PATCH] Add GitHub issue and PR templates (#127) motivation: capture issue/PR info consistently changes: add .github directory with relevant PR and issue templates --- .github/ISSUE_TEMPLATE.md | 20 ++++++++++++++++++++ .github/PULL_REQUEST_TEMPLATE.md | 13 +++++++++++++ 2 files changed, 33 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE.md create mode 100644 .github/PULL_REQUEST_TEMPLATE.md diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md new file mode 100644 index 0000000..1c2f516 --- /dev/null +++ b/.github/ISSUE_TEMPLATE.md @@ -0,0 +1,20 @@ +### Expected behavior +_[what you expected to happen]_ + +### Actual behavior +_[what actually happened]_ + +### Steps to reproduce + +1. ... +2. ... + +### If possible, minimal yet complete reproducer code (or URL to code) + +_[anything to help us reproducing the issue]_ + +### SwiftAWSLambdaRuntime version/commit hash + +_[the SwiftAWSLambdaRuntime tag/commit hash]_ + +### Swift & OS version (output of `swift --version && uname -a`) diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md new file mode 100644 index 0000000..ab90c7b --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,13 @@ +_[One line description of your change]_ + +### Motivation: + +_[Explain here the context, and why you're making that change. What is the problem you're trying to solve.]_ + +### Modifications: + +_[Describe the modifications you've done.]_ + +### Result: + +_[After your change, what will change.]_