From a7ff1a10f5578e959857515b7fd5d0523a52e7a0 Mon Sep 17 00:00:00 2001 From: Geunsik Lim Date: Fri, 15 Jun 2018 10:22:08 +0900 Subject: [PATCH] [CI] Add template for Issue & PR This PR is to create a template to automate issue and PR process. It is cloned from https://github.sec.samsung.net/STAR/TAOS-CI/tree/tizen/.github **Changes proposed in this PR:** 1. Added issue template 2. Added PR template Signed-off-by: Geunsik Lim --- .github/ISSUE_TEMPLATE/Bug_report.md | 31 +++++++++++++++++++++++++++++++ .github/ISSUE_TEMPLATE/Feature_request.md | 17 +++++++++++++++++ .github/ISSUE_TEMPLATE/Support_request.md | 13 +++++++++++++ .github/PULL_REQUEST_TEMPLATE.md | 19 +++++++++++++++++++ 4 files changed, 80 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/Bug_report.md create mode 100644 .github/ISSUE_TEMPLATE/Feature_request.md create mode 100644 .github/ISSUE_TEMPLATE/Support_request.md create mode 100644 .github/PULL_REQUEST_TEMPLATE.md diff --git a/.github/ISSUE_TEMPLATE/Bug_report.md b/.github/ISSUE_TEMPLATE/Bug_report.md new file mode 100644 index 0000000..ae242dd --- /dev/null +++ b/.github/ISSUE_TEMPLATE/Bug_report.md @@ -0,0 +1,31 @@ +--- +name: Bug report +about: Create a report to help us improve + +--- + +Having problems with a source code of a github repository? + +Having problems with the CI bot that controls the build process? + +Good to go? Then please remove these lines above, including this one, and help us understand your issue by answering the following: + +# Issue Description +A clear and concise description of what the bug is. + +Expected Result +============ +A clear and concise description of what you expected to happen. + +How to Reproduce +=============== +1. Go to '...' +2. Click on '....' +3. Scroll down to '....' +4. See error + + +Further Information +=============== +* A link to an output result showing the issue +* Exact OS version diff --git a/.github/ISSUE_TEMPLATE/Feature_request.md b/.github/ISSUE_TEMPLATE/Feature_request.md new file mode 100644 index 0000000..4af4043 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/Feature_request.md @@ -0,0 +1,17 @@ +--- +name: Feature request +about: Suggest an idea for this project + +--- + +**Is your feature request related to a problem? Please describe.** +A clear and concise description of what the problem is. For example, I'm always frustrated when [...] + +**Describe the solution you'd like** +A clear and concise description of what you want to happen. + +**Describe alternatives you've considered** +A clear and concise description of any alternative solutions or features you've considered. + +**Additional context** +Add any other context or screenshots about the feature request here. diff --git a/.github/ISSUE_TEMPLATE/Support_request.md b/.github/ISSUE_TEMPLATE/Support_request.md new file mode 100644 index 0000000..5c7b2f8 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/Support_request.md @@ -0,0 +1,13 @@ +--- +name: Support Request +about: Report a problem with our project source code + +--- + +![WARNING](https://media.giphy.com/media/Zsx8ZwmX3ajny/giphy.gif) + +Please only create issues/feature requests for the project here. + +For support contact our project maintainer(s), they meet online in a 'Issues' list. +There you can ask questions if you have trouble understanding something, seek advice and mingle with other project members. +For further information see 'Wiki' page. diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md new file mode 100644 index 0000000..77d7cdd --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,19 @@ +# [Template] PR Description +github.sec.samsung.net automatically copies your commit message for your convenience. +Please write your own PR description with this template and remove unused part of the template. + +Fixed issue #no. +Depict why this PR has to be merged into the mainline repository. + +**Changes proposed in this PR:** +1. Write 1st content +2. Write 2nd content + +**Self evaluation:** +1. Build test: [ ]Passed [ ]Failed [ ]Skipped +2. Run test: [ ]Passed [ ]Failed [* ]Skipped + +**How to evaluate:** +1. Describe how to evaluate your PR. + +Append signed-off information by running **$git commit -s ...** command. -- 2.7.4