diff --git a/.github/ISSUE_TEMPLATE/bug.yml b/.github/ISSUE_TEMPLATE/bug.yml new file mode 100644 index 0000000..2107b4f --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug.yml @@ -0,0 +1,40 @@ +name: Bug Report +description: File a bug report +title: "[BUG]: " +labels: ["bug"] +assignees: + - xakepnz +body: + - type: markdown + attributes: + value: | + Thanks for taking the time to fill out this bug report! + - type: textarea + id: what-happened + attributes: + label: What happened? + description: Also tell us, what did you expect to happen? + placeholder: Tell us what you see! + value: "Details of bug..." + validations: + required: true + - type: dropdown + id: version + attributes: + label: Version + description: What version of enterpriseattack are you running? + options: + - 0.1.1 + - 0.1.2 + - 0.1.3 + - 0.1.4 + - 0.1.5 + - 0.1.6 (Default) + validations: + required: true + - type: textarea + id: logs + attributes: + 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. + render: shell diff --git a/.github/ISSUE_TEMPLATE/feature.yml b/.github/ISSUE_TEMPLATE/feature.yml new file mode 100644 index 0000000..3307e91 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature.yml @@ -0,0 +1,20 @@ +name: Feature Request +description: Request a new feature +title: "[FEATURE]: " +labels: ["enhancement"] +assignees: + - xakepnz +body: + - type: markdown + attributes: + value: | + Thanks for taking the time to fill out this feature request! + - type: textarea + id: details + attributes: + label: Feature Details + description: Also attach any relevant screenshots/docs/links. + placeholder: Tell us what you want to see! + value: "Details of feature..." + validations: + required: true diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index 4c1644e..44f28ed 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -1,17 +1,2 @@ -### All Submissions: +### Description: -* [ ] Have you followed the guidelines in our Contributing document? -* [ ] Have you checked to ensure there aren't other open [Pull Requests](../../../pulls) for the same update/change? - - - -### New Feature Submissions: - -1. [ ] Does your submission pass tests? -2. [ ] Have you lint your code locally prior to submission? - -### Changes to Core Features: - -* [ ] Have you added an explanation of what your changes do and why you'd like us to include them? -* [ ] Have you written new tests for your core changes, as applicable? -* [ ] Have you successfully ran tests with your changes locally?