From 0d47d386881ba0910b042506d839755a9baa6b38 Mon Sep 17 00:00:00 2001 From: vijaysawant Date: Thu, 19 Oct 2023 16:52:06 +0530 Subject: [PATCH] add GitHub issue template (.yaml) and Pull request template (.md) files --- .github/ISSUE_TEMPLATE/new_issue.yaml | 21 +++++++++++++++++++ .../PULL_REQUEST_TEMPLATE/new_pull_request.md | 19 +++++++++++++++++ 2 files changed, 40 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/new_issue.yaml create mode 100644 .github/PULL_REQUEST_TEMPLATE/new_pull_request.md diff --git a/.github/ISSUE_TEMPLATE/new_issue.yaml b/.github/ISSUE_TEMPLATE/new_issue.yaml new file mode 100644 index 00000000000..c63b512ddf6 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/new_issue.yaml @@ -0,0 +1,21 @@ +name: "Create a new issue" +description: "Please provide more information about the problem" +title: "[robottelo]" +body: + - type: textarea + id: description + attributes: + label: Description of the problem + description: A brief description of the question or issue or exisiting PR, also include what you tried and what didn't work. + placeholder: '[Provide a clear and concise description of the problem or issue]' + validations: + required: true + - type: textarea + id: additional-info + attributes: + label: Additional information + description: Include any additional information, context, dependancy, or notes that may be relevant to this PR. + placeholder: '[Link to any related GitHub issues or pull requests, also include any error, output, log if needed]' + value: 'GitHub issue | Pull Request | Error | Output | Log' + validations: + required: false \ No newline at end of file diff --git a/.github/PULL_REQUEST_TEMPLATE/new_pull_request.md b/.github/PULL_REQUEST_TEMPLATE/new_pull_request.md new file mode 100644 index 00000000000..f3ece5d2837 --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE/new_pull_request.md @@ -0,0 +1,19 @@ +### Problem Statement +Provide a description of the problem or issue you are addressing with this PR +### Solution +Describe the solution you are proposing to address the problem +### Test Cases +Test cases that you have added or modified to verify the changes made in this PR +### Test information +Test description, setup required +### Test steps & Expected result +``` +Step 1. +Step 2. + +Expected result: +``` +### Related Issues +Link to any related GitHub issues or PR from robottelo, airgun, nailgun +### Additional Notes +Any additional notes for reviewers that may be relevant to this PR \ No newline at end of file