Simple interface to create issues in your Gitlab board straight from your Godot game. You can use it to gather feedback data from your audience or create bug reports during playtest sessions.
- Download the project and add the files CreateIssue.tscn and CreateIssue.gd to your project.
- Set the following constants in CreateIssue.gd according to your Gitlab instance and Gitlab project:
- const GITLAB_URL = "my-gitlab-server-url"
- const PROJECT_ID = "1"
- const OAUTH_TOKEN = "xxxxxxxxxx"
- Add an issue headline into the HeaderText and a full issue description to the BodyText.
- Press the Send-button and a second later a new issue should be created in your Gitlab board.
- Open Gitlab and click on your user profile in the top right corner.
- Select Settings and from there, Access Tokens in the left side bar.
- Create a new token with the scope api.
- Open your project on Gitlab and go to Project Overview → Details.
- Your project id should be visible right under your project name.