Skip to content

Commit 0f6a308

Browse files
fix: grept apply (#19)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent 6cedd22 commit 0f6a308

2 files changed

Lines changed: 102 additions & 0 deletions

File tree

Lines changed: 70 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,70 @@
1+
name: AVM - Module Issue ➕🐛🔒
2+
description: Want to request a new Module feature or report a bug? Let us know!
3+
title: "[AVM Module Issue]: "
4+
labels: ["Needs: Triage :mag:", "Language: Terraform :globe_with_meridians:"]
5+
projects: ["Azure/566"]
6+
body:
7+
- type: markdown
8+
attributes:
9+
value: |
10+
Thank you for submitting this AVM Module Issue!
11+
12+
To help us triage your issue, please provide the below details.
13+
14+
> **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).
15+
- type: checkboxes
16+
id: existing-checks
17+
attributes:
18+
label: Check for previous/existing GitHub issues
19+
description: By submitting this issue, you confirm that you have searched for previous/existing GitHub issues to avoid creating a duplicate.
20+
options:
21+
- label: I have checked for previous/existing GitHub issues
22+
required: true
23+
- type: checkboxes
24+
id: module-specific-checks
25+
attributes:
26+
label: Module specific issue
27+
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.
28+
options:
29+
- label: I confirm that this issue is about this AVM module and not about the resource itself, or how to use Terraform.
30+
required: true
31+
- type: dropdown
32+
id: issue-type
33+
attributes:
34+
label: Issue Type?
35+
description: How would you best describe this issue? Is this a...
36+
options:
37+
- "Feature Request"
38+
- "Bug"
39+
- "Security Bug"
40+
- "I'm not sure"
41+
validations:
42+
required: true
43+
- type: input
44+
id: module-version
45+
attributes:
46+
label: (Optional) Module Version
47+
description: Please provide which version(s) of the module does this issue apply to.
48+
validations:
49+
required: false
50+
- type: input
51+
id: correlation-id
52+
attributes:
53+
label: (Optional) Correlation Id
54+
description: Please provide a correlation id if available and appropriate.
55+
validations:
56+
required: false
57+
- type: textarea
58+
id: question-feedback-text
59+
attributes:
60+
label: Description
61+
description: |
62+
Please describe the issue!
63+
> **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.
64+
placeholder: |
65+
<!--
66+
If this is a bug, please provide a minimum example to reproduce the bug.
67+
If this is a feature request, please provide a detailed description of the feature.
68+
-->
69+
validations:
70+
required: true

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
## Description
2+
3+
<!--
4+
>Thank you for your contribution !
5+
> Please include a summary of the change and which issue is fixed.
6+
> Please also include the context.
7+
> List any dependencies that are required for this change.
8+
9+
Fixes #123
10+
Closes #456
11+
-->
12+
13+
## Type of Change
14+
15+
<!-- Use the check-boxes [x] on the options that are relevant. -->
16+
17+
- [ ] Non-module change (e.g. CI/CD, documentation, etc.)
18+
- [ ] Azure Verified Module updates:
19+
- [ ] Bugfix containing backwards compatible bug fixes, and I have NOT bumped the MAJOR or MINOR version in `locals.version.tf.json`:
20+
- [ ] Someone has opened a bug report issue, and I have included "Closes #{bug_report_issue_number}" in the PR description.
21+
- [ ] The bug was found by the module author, and no one has opened an issue to report it yet.
22+
- [ ] Feature update backwards compatible feature updates, and I have bumped the MINOR version in `locals.version.tf.json`.
23+
- [ ] Breaking changes and I have bumped the MAJOR version in `locals.version.tf.json`.
24+
- [ ] Update to documentation
25+
26+
# Checklist
27+
28+
- [ ] I'm sure there are no other open Pull Requests for the same update/change
29+
- [ ] My corresponding pipelines / checks run clean and green without any errors or warnings
30+
- [ ] I did run all [pre-commit](https://azure.github.io/Azure-Verified-Modules/contributing/terraform/terraform-contribution-flow/#5-run-pre-commit-checks) checks
31+
32+
<!-- Please keep up to date with the contribution guide at https://aka.ms/avm/contribute/terraform -->

0 commit comments

Comments
 (0)