Browse Source

Merge pull request #70 from novaspirit/beta

Beta
don 3 years ago
parent
commit
ca33586a75

+ 51 - 0
.github/ISSUE_TEMPLATE/bug_report.md

@@ -0,0 +1,51 @@
+name: Bug Report
+description: File a bug report
+title: '[BUG] <title>'
+body:
+  - type: textarea
+    attributes:
+      label: Bug Description
+      description: >-
+        What is the bug? Please provide a snippet of output including
+        any errors and the messages logged before the error.
+        Verbose or debug logs are preferred but please ensure all secrets and
+        other sensitive information has been removed.
+      placeholder: I did ... and ... happened.
+    validations:
+      required: true
+  - type: textarea
+    attributes:
+      label: Expected Behavior
+      description: |
+        What did you expect to happen? For example, expected output or behavior.
+    validations:
+      required: true
+  - type: textarea
+    attributes:
+      label: Steps To Reproduce
+      description: >-
+        Please provide the steps that can be used to reproduce this behavior.
+
+        If possible, please include an example project (GitHub repository) that
+        is capable of reproducing this behavior.
+        The example project should only include the minimum required code
+        to reproduce the issue.
+        It should not depend on any external resource.
+      value: |
+        Example project: ...
+
+        1.
+        2.
+        3.
+        ...
+    validations:
+      required: true
+  - type: textarea
+    attributes:
+      label: Anything else?
+      description: |
+        Links? References? Anything that will give us more context about the issue you are encountering!
+
+        Tip: You can attach images or log files by clicking this area to highlight it and then dragging files in.
+    validations:
+      required: false

+ 1 - 0
.github/ISSUE_TEMPLATE/config.yml

@@ -0,0 +1 @@
+blank_issues_enabled: true

+ 17 - 0
.github/ISSUE_TEMPLATE/feature_request.md

@@ -0,0 +1,17 @@
+---
+name: Feature request
+about: Suggest an idea for this project
+title: "[REQUEST] feature"
+---
+
+**Is your feature request related to a problem? Please describe.**
+A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
+
+**Describe the solution you'd like**
+A clear and concise description of what you want to happen.
+
+**Describe alternatives you've considered**
+A clear and concise description of any alternative solutions or features you've considered.
+
+**Additional context**
+Add any other context or screenshots about the feature request here.

+ 11 - 0
.github/ISSUE_TEMPLATE/general_question.md

@@ -0,0 +1,11 @@
+---
+name: General Question
+about: General question about the project, usage, design, etc.
+title: "[QUESTION]"
+---
+
+**Question**
+Your question here.
+
+**Context**
+Any additional context around the question such a link to a project where it's being implemented.

+ 0 - 3
.github/pull_request_template.md

@@ -37,11 +37,8 @@
 # Checklist
 
 <!-- You can erase any parts of this template not applicable to your Pull Request. -->
-- [ ] 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?
 - [ ] Does your submission pass tests?
 - [ ] Have you linted your code locally prior to submission?
 - [ ] 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?
 - [ ] Have you updated documentation, as applicable?

+ 1 - 1
.github/workflows/lint.yml

@@ -16,7 +16,7 @@ name: Lint Code Base
 #############################
 on:
   push:
-    branches-ignore: [beta, main]
+    branches-ignore: [beta, master]
     # Remove the line above to run when pushing to master
 
 ###############