From 90624f3874fa25a23d53048df408e06b724eb953 Mon Sep 17 00:00:00 2001 From: Quan Zhang Date: Tue, 10 Jan 2023 14:40:23 -0500 Subject: [PATCH] Update issue and PR templates This commit adds the GitHub issue templates (`Bug report` & `Feature request`) and PR template as required in: https://github.com/tektoncd/community/blob/main/process.md#project-requirements The issue templates are copied from: https://github.com/tektoncd/pipeline The PR templates are copied from: https://github.com/tektoncd/catalog --- .github/ISSUE_TEMPLATE/bug_report.md | 39 +++++++++++++++++++++++ .github/ISSUE_TEMPLATE/feature_request.md | 16 ++++++++++ .github/pull_request_template.md | 13 ++++++++ 3 files changed, 68 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/bug_report.md create mode 100644 .github/ISSUE_TEMPLATE/feature_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..ec5c32b --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -0,0 +1,39 @@ +--- +name: Bug report +about: Create a report to help us improve +title: '' +labels: '' +assignees: '' + +--- + +# Expected Behavior + +# Actual Behavior + +# Steps to Reproduce the Problem + +1. +2. +3. + +# Additional Info + +- Kubernetes version: + + **Output of `kubectl version`:** + +``` +(paste your output here) +``` + +- Tekton Pipeline version: + + **Output of `tkn version` or `kubectl get pods -n tekton-pipelines -l app=tekton-pipelines-controller -o=jsonpath='{.items[0].metadata.labels.version}'`** + +``` +(paste your output here) +``` + + + diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md new file mode 100644 index 0000000..f32eb8a --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -0,0 +1,16 @@ +--- +name: Feature request +about: Suggest an idea for this project +title: '' +labels: '' +assignees: '' + +--- + +### Feature request + + + +### Use case + + diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md new file mode 100644 index 0000000..83328d4 --- /dev/null +++ b/.github/pull_request_template.md @@ -0,0 +1,13 @@ + + +# Changes + + + +# Submitter Checklist + +These are the criteria that every PR should meet, please check them off as you +review them: + +TODO: add submitter checklist details