diff --git a/.github/ISSUE_TEMPLATE/BUG-REPORT.yml b/.github/ISSUE_TEMPLATE/BUG-REPORT.yml new file mode 100644 index 0000000..3ab46d9 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/BUG-REPORT.yml @@ -0,0 +1,61 @@ +name: Bug Report +description: File a bug report +title: "[Bug]: " +labels: ["bug"] +body: + - type: markdown + attributes: + value: | + Thanks for taking the time to fill out this bug report! + - type: textarea + id: expected-behavior + attributes: + label: Expected behavior + description: How do you expect the + value: "Something should happen" + validations: + required: true + - type: textarea + id: what-happened + attributes: + label: Actual behavior + description: How is what happened different from the expected behavior? + value: "Something else happened" + validations: + required: true + - type: dropdown + id: package-version + attributes: + label: org-unique-id version + description: What version of org-unique-id are you using? + options: + - master + - 0.4.1 + - 0.4.0 + - 0.3.1 + - 0.3.0 + - something else (please specify) + - type: dropdown + id: emacs-version + attributes: + label: Emacs version + description: Which version of Emacs are you using? + options: + - 28.1 + - 27.2 + - 27.1 + - 26.3 + - 26.2 + - 26.1 + - 25.3 + - 25.2 + - 25.1 + - master + - something else (please specify) + + - type: textarea + id: logs + attributes: + label: Relevant code or log output + description: Please copy and pase any relevant code or log output. This will be automatically formatted into code, so no need for backticks + render: emacs-lisp diff --git a/.github/ISSUE_TEMPLATE/FEATURE-REQUEST.yml b/.github/ISSUE_TEMPLATE/FEATURE-REQUEST.yml new file mode 100644 index 0000000..a48562f --- /dev/null +++ b/.github/ISSUE_TEMPLATE/FEATURE-REQUEST.yml @@ -0,0 +1,33 @@ +name: Feature Request +description: Request a new feature +title: "[Feature Request]: " +labels: ["enhancement"] +body: + - type: markdown + attributes: + value: | + Thanks for taking the time to request a new feature! + - type: textarea + id: feature-description + attributes: + label: New feature + description: Description of the new feature + value: "New function org-unique-id-thing should do thing" + validations: + required: true + - type: textarea + id: feature-reason + attributes: + label: Why this new feature + description: Describe why this new feature should be added to org-unique-id + value: "New function org-unique-id-thing does something often done by people" + validations: + required: true + - type: textarea + id: ideas-implementation + attributes: + label: Implementation ideas and additional thoughts + description: Do you have an idea on how to implement it? + value: "It could be implemented doing foo, bar, and baz" + validations: + required: false