Skip to content

Commit

Permalink
Adding templates (#7)
Browse files Browse the repository at this point in the history
  • Loading branch information
xakepnz committed Dec 18, 2022
1 parent c33545e commit 327b98d
Show file tree
Hide file tree
Showing 3 changed files with 61 additions and 16 deletions.
40 changes: 40 additions & 0 deletions .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
20 changes: 20 additions & 0 deletions .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
17 changes: 1 addition & 16 deletions .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?

<!-- You can erase any parts of this template not applicable to your Pull Request. -->

### 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?

0 comments on commit 327b98d

Please sign in to comment.