From c41d61cdc4ef28f4a79e28f2c70d3211d267d990 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ruben=20H=C3=B6nle?= Date: Mon, 7 Apr 2025 12:02:16 +0200 Subject: [PATCH] chore(github): add issue templates (#750) relates to STACKITTPR-138 --- .github/ISSUE_TEMPLATE/bug_report.md | 42 +++++++++++++++++++++++ .github/ISSUE_TEMPLATE/feature_request.md | 33 ++++++++++++++++++ 2 files changed, 75 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/bug_report.md create mode 100644 .github/ISSUE_TEMPLATE/feature_request.md diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md new file mode 100644 index 00000000..746a838e --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -0,0 +1,42 @@ +--- +name: Bug report +about: Report a bug in the STACKIT Terraform provider +title: '' +labels: bug +assignees: '' + +--- + +## Description + +*Please add a clear and concise description of what the bug is.* + +## Steps to reproduce + + +```terraform +# put your terraform example here +# ... +``` + + + +1. Run `terraform ...` +2. ... + +## Actual behavior + +*Please describe the current behavior of the STACKIT Terraform provider. Don't forget to add detailed information like error messages.* + +## Expected behavior + +*Please describe the behavior which you would expect from the STACKIT Terraform provider in that case.* + +## Environment + - OS: + - Terraform version (see `terraform --version`): `vX.X.X` + - Version of the STACKIT Terraform provider: `vX.X.X` + +**Additional information** + +*Feel free to add any additional information here.* diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md new file mode 100644 index 00000000..5c31cae8 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -0,0 +1,33 @@ +--- +name: Feature request +about: Suggest an idea for the STACKIT Terraform provider +title: '' +labels: enhancement +assignees: '' + +--- + +## Problem description + +*Is your feature request related to a problem? If so, please give us a clear and concise description of what the problem is. +Example: I'm always frustrated when [...]* + +## Proposed solution + +*A clear and concise description of what you want to happen.* + + + +```terraform +# put your terraform example here +# ... +``` + +## Alternative solutions (optional) + +*A clear and concise description of any alternative solutions or features you've considered. (optional)* + +## Additional information + +*Feel free to add any additional information here.* +