tools for exporting godot projects via Github Actions
add issue templates
| -rw-r--r-- | .github/ISSUE_TEMPLATE/bug.yml | 38 | ||||
| -rw-r--r-- | .github/ISSUE_TEMPLATE/feature.yml | 17 |
2 files changed, 55 insertions, 0 deletions
diff --git a/.github/ISSUE_TEMPLATE/bug.yml b/.github/ISSUE_TEMPLATE/bug.yml new file mode 100644 index 0000000..248f705 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug.yml @@ -0,0 +1,38 @@ +name: Bug Report +description: File a bug report +labels: ["bug"] +assignees: + - bendn +body: + - type: markdown + attributes: + value: Thanks for taking the time to fill out this bug report! + - type: textarea + attributes: + label: What happened? + value: "A bug happened!" + placeholder: The sky fell! + description: Also, what did you expect to happen? + validations: + required: true + - type: textarea + attributes: + render: YAML + label: Workflow + description: The workflow your using + validations: + required: true + - type: textarea + attributes: + label: Logs + description: The logs generated from the workflow, preferably a link to the run. + validations: + required: true + - type: textarea + attributes: + label: Version + description: The version that you are using + placeholder: main + value: main + validations: + required: true diff --git a/.github/ISSUE_TEMPLATE/feature.yml b/.github/ISSUE_TEMPLATE/feature.yml new file mode 100644 index 0000000..425ac6e --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature.yml @@ -0,0 +1,17 @@ +name: Feature Request +description: Request a new feature +labels: ["enhancement"] +assignees: + - bendn +body: + - type: markdown + attributes: + value: Thanks for taking the time to request a new feature! + - type: textarea + attributes: + label: What would you like to see changed/added? + description: Give some examples to make it clear! + placeholder: Cool thing! + value: "A rocketship that goes to the moon when you press `a`" + validations: + required: true |