tools for exporting godot projects via Github Actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
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. Please upload the entire workflow, not just a snippet, or "this workflow from here".
    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. Use a hash or a branch name.
      placeholder: main
      value: main
    validations:
      required: true