tools for exporting godot projects via Github Actions
update bug template
| -rw-r--r-- | .github/ISSUE_TEMPLATE/bug.yml | 4 | ||||
| -rwxr-xr-x | .github/actions/setup-godot/parse.py | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/.github/ISSUE_TEMPLATE/bug.yml b/.github/ISSUE_TEMPLATE/bug.yml index 248f705..e3db58d 100644 --- a/.github/ISSUE_TEMPLATE/bug.yml +++ b/.github/ISSUE_TEMPLATE/bug.yml @@ -19,7 +19,7 @@ body: attributes: render: YAML label: Workflow - description: The workflow your using + description: The workflow your using. Please upload the entire workflow, not just a snippet, or "this workflow from here". validations: required: true - type: textarea @@ -31,7 +31,7 @@ body: - type: textarea attributes: label: Version - description: The version that you are using + description: The version that you are using. Use a hash or a branch name. placeholder: main value: main validations: diff --git a/.github/actions/setup-godot/parse.py b/.github/actions/setup-godot/parse.py index 669c585..d53daa0 100755 --- a/.github/actions/setup-godot/parse.py +++ b/.github/actions/setup-godot/parse.py @@ -6,4 +6,4 @@ parsed = argv[1].split(".") release = "stable" if len(parsed[-1]) > 1: release = parsed.pop(-1) -print(f"{'.'.join(parsed)}.{release if release else 'stable'}") +print(f"{'.'.join(parsed)}.{release}") |