From 39aea3789551967fe0e6c204f767d0831d58b601 Mon Sep 17 00:00:00 2001 From: Yummy-Yums Date: Wed, 12 Feb 2025 20:35:12 +0000 Subject: [PATCH] docs: Add a template for bug and new feature (#433) feat: Add a template for bug and new feature Signed-off-by: Yummy-Yums <77977520+Yummy-Yums@users.noreply.github.com> --- .github/ISSUE_TEMPLATE/1-bug-report.yaml | 37 +++++++++++++++++++ .github/ISSUE_TEMPLATE/2-feature-request.yaml | 22 +++++++++++ .github/ISSUE_TEMPLATE/config.yml | 1 + 3 files changed, 60 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/1-bug-report.yaml create mode 100644 .github/ISSUE_TEMPLATE/2-feature-request.yaml create mode 100644 .github/ISSUE_TEMPLATE/config.yml diff --git a/.github/ISSUE_TEMPLATE/1-bug-report.yaml b/.github/ISSUE_TEMPLATE/1-bug-report.yaml new file mode 100644 index 00000000..faf6e430 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/1-bug-report.yaml @@ -0,0 +1,37 @@ +name: Bug Report +description: Report a bug in the Identus Mediator Agent + +body: + - type: dropdown + id: is-regression + attributes: + label: Is this a regression? + options: + - "Yes" + - "No" + validations: + required: true + + - type: textarea + id: description + attributes: + label: Description + validations: + required: true + + - type: textarea + id: exception-or-error + attributes: + label: Please provide the exception or error you saw + render: "Markdown" + + - type: textarea + id: environment + attributes: + label: Please provide the environment you discovered this bug in + render: "Markdown" + + - type: textarea + id: other + attributes: + label: Anything else? \ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE/2-feature-request.yaml b/.github/ISSUE_TEMPLATE/2-feature-request.yaml new file mode 100644 index 00000000..0880307e --- /dev/null +++ b/.github/ISSUE_TEMPLATE/2-feature-request.yaml @@ -0,0 +1,22 @@ +name: 'Feature Request' +description: Suggest a new feature for Identus Mediator Agent + +body: + - type: textarea + id: proposed-feature + attributes: + label: Proposed feature + validations: + required: true + + - type: textarea + id: description + attributes: + label: Feature description + validations: + required: true + + - type: textarea + id: other + attributes: + label: Anything else? \ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml new file mode 100644 index 00000000..ec4bb386 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -0,0 +1 @@ +blank_issues_enabled: false \ No newline at end of file