diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug.yaml similarity index 95% rename from .github/ISSUE_TEMPLATE/bug_report.yml rename to .github/ISSUE_TEMPLATE/bug.yaml index 2654a162..6806de22 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug.yaml @@ -1,6 +1,6 @@ name: Bug Report description: File a bug report -labels: ["Type: bug"] +labels: ["bug"] body: - type: markdown attributes: @@ -43,7 +43,7 @@ body: - type: textarea id: logs attributes: - label: Relevant log output + label: Relevant Log Output description: > Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks. Fetch the logs using `juju debug-log --replay` and `kubectl logs ...`. Additional details available in the juju docs @@ -54,5 +54,4 @@ body: - type: textarea id: additional-context attributes: - label: Additional context - + label: Additional Context diff --git a/.github/ISSUE_TEMPLATE/task.yaml b/.github/ISSUE_TEMPLATE/task.yaml new file mode 100644 index 00000000..8796a2d6 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/task.yaml @@ -0,0 +1,27 @@ +name: Task +description: File an enhancement proposal +labels: "enhancement" +body: + - type: markdown + attributes: + value: > + Thanks for taking the time to fill out this enhancement + proposal! Before submitting your issue, please make sure there + isn't already a prior issue concerning this. If there is, + please join that discussion instead. + - type: textarea + id: enhancement-proposal-what + attributes: + label: What needs to get done + description: > + Describe what needs to get done + validations: + required: true + - type: textarea + id: enhancement-proposal-why + attributes: + label: Why it needs to get done + description: > + Describe why it needs to get done + validations: + required: true