From 558f27d0c83e0ecbb4974cfaf769667c83089fea Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 8 Mar 2024 08:50:53 +0000 Subject: [PATCH] fix: grept apply --- .github/ISSUE_TEMPLATE/avm_module_issue.yml | 70 +++++++++++++++++++++ .github/PULL_REQUEST_TEMPLATE.md | 32 ++++++++++ 2 files changed, 102 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/avm_module_issue.yml create mode 100644 .github/PULL_REQUEST_TEMPLATE.md diff --git a/.github/ISSUE_TEMPLATE/avm_module_issue.yml b/.github/ISSUE_TEMPLATE/avm_module_issue.yml new file mode 100644 index 0000000..a243c94 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/avm_module_issue.yml @@ -0,0 +1,70 @@ +name: AVM - Module Issue ➕🐛🔒 +description: Want to request a new Module feature or report a bug? Let us know! +title: "[AVM Module Issue]: " +labels: ["Needs: Triage :mag:", "Language: Terraform :globe_with_meridians:"] +projects: ["Azure/566"] +body: + - type: markdown + attributes: + value: | + Thank you for submitting this AVM Module Issue! + + To help us triage your issue, please provide the below details. + + > **NOTE**: If you'd like to propose a new AVM module, please follow the process described in the [AVM repo](https://aka.ms/AVM/ModuleProposal). + - type: checkboxes + id: existing-checks + attributes: + label: Check for previous/existing GitHub issues + description: By submitting this issue, you confirm that you have searched for previous/existing GitHub issues to avoid creating a duplicate. + options: + - label: I have checked for previous/existing GitHub issues + required: true + - type: checkboxes + id: module-specific-checks + attributes: + label: Module specific issue + description: By submitting this issue, you confirm that this issue is about this AVM module and not about the resource itself, or how to use Terraform. + options: + - label: I confirm that this issue is about this AVM module and not about the resource itself, or how to use Terraform. + required: true + - type: dropdown + id: issue-type + attributes: + label: Issue Type? + description: How would you best describe this issue? Is this a... + options: + - "Feature Request" + - "Bug" + - "Security Bug" + - "I'm not sure" + validations: + required: true + - type: input + id: module-version + attributes: + label: (Optional) Module Version + description: Please provide which version(s) of the module does this issue apply to. + validations: + required: false + - type: input + id: correlation-id + attributes: + label: (Optional) Correlation Id + description: Please provide a correlation id if available and appropriate. + validations: + required: false + - type: textarea + id: question-feedback-text + attributes: + label: Description + description: | + Please describe the issue! + > **NOTE**: All requested features must already be supported by the provider and Preview Services ([SFR1](https://azure.github.io/Azure-Verified-Modules/specs/shared/#id-sfr1---category-composition---preview-services)) are not supported. + placeholder: | + + validations: + required: true diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md new file mode 100644 index 0000000..1346202 --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,32 @@ +## Description + + + +## Type of Change + + + +- [ ] Non-module change (e.g. CI/CD, documentation, etc.) +- [ ] Azure Verified Module updates: + - [ ] Bugfix containing backwards compatible bug fixes, and I have NOT bumped the MAJOR or MINOR version in `locals.version.tf.json`: + - [ ] Someone has opened a bug report issue, and I have included "Closes #{bug_report_issue_number}" in the PR description. + - [ ] The bug was found by the module author, and no one has opened an issue to report it yet. + - [ ] Feature update backwards compatible feature updates, and I have bumped the MINOR version in `locals.version.tf.json`. + - [ ] Breaking changes and I have bumped the MAJOR version in `locals.version.tf.json`. + - [ ] Update to documentation + +# Checklist + +- [ ] I'm sure there are no other open Pull Requests for the same update/change +- [ ] My corresponding pipelines / checks run clean and green without any errors or warnings +- [ ] I did run all [pre-commit](https://azure.github.io/Azure-Verified-Modules/contributing/terraform/terraform-contribution-flow/#5-run-pre-commit-checks) checks + +