From 7dcef75717b21948422fd5de51f70b50162d4edd Mon Sep 17 00:00:00 2001 From: codecakes Date: Mon, 5 Aug 2024 02:35:13 +0530 Subject: [PATCH] Update adr_template.yml (#10) --- .github/ISSUE_TEMPLATE/adr_template.yml | 39 ++++++++++++++++++------- 1 file changed, 29 insertions(+), 10 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/adr_template.yml b/.github/ISSUE_TEMPLATE/adr_template.yml index ed8cef5..a06bde7 100644 --- a/.github/ISSUE_TEMPLATE/adr_template.yml +++ b/.github/ISSUE_TEMPLATE/adr_template.yml @@ -1,35 +1,54 @@ name: adr template -about: See [ADR](https://github.com/joelparkerhenderson/architecture-decision-record/blob/main/locales/en/templates/decision-record-template-by-michael-nygard/index.md) +description: See [ADR](https://github.com/joelparkerhenderson/architecture-decision-record/blob/main/locales/en/templates/decision-record-template-by-michael-nygard/index.md) title: ADR Record -assigness: [codecakes] labels: [C4GT Community, C4GT Mentorship, C4GT Advisory] body: - type: dropdown id: adr-superscedes + validations: + required: true attributes: label: Does it superscede an existing ADR? - validations: - required: true options: - - Yes - - No + - "Yes" + - "No" - type: markdown attributes: value: "# Title" - - type: markdown + - type: dropdown + id: status attributes: - value: "## Status" - description: What is the status, such as proposed, accepted, rejected, deprecated, superseded, etc.? + label: "Status" + options: + - proposed + - accepted + - rejected + - deprecated + - superseded - type: markdown attributes: value: "## Context" + - type: input + id: context + attributes: + label: Context description: What is the issue that we're seeing that is motivating this decision or change? + placeholder: What is the issue that we're seeing that is motivating this decision or change? - type: markdown attributes: value: "## Decision" + - type: textarea + id: decision + attributes: + label: Decision description: What is the change that we're proposing and/or doing? + placeholder: What is the change that we're proposing and/or doing? - type: markdown attributes: value: "## Consequences" + - type: textarea + id: consequences + attributes: + label: Consequences description: What becomes easier or more difficult to do because of this change? - + placeholder: What becomes easier or more difficult to do because of this change?