Skip to content

Commit

Permalink
chore: update bug report template
Browse files Browse the repository at this point in the history
  • Loading branch information
MDeLuise committed Oct 22, 2024
1 parent cd5bff5 commit 20cde6f
Show file tree
Hide file tree
Showing 2 changed files with 84 additions and 22 deletions.
100 changes: 84 additions & 16 deletions .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,28 +4,96 @@ labels:
- "Type: Bug"
- "Status: Created"
body:
- type: checkboxes
- type: markdown
attributes:
value: |
Please use this only if you identified a real error in the application. If you need help, please use the [discussion forum](https://github.com/MDeLuise/plant-it/discussions).
Thanks for taking the time to fill out this bug report!
# General description
- type: textarea
id: description
attributes:
label: Avoid duplicated bug reports
description: Please avoid bug report duplication
options:
- label: I've found a bug and checked that there are no open or closed bug report related to this.
required: true

label: Bug Description
description: A clear and concise description of what the application error is.
validations:
required: true
- type: textarea
id: reproduction
attributes:
label: Description
description: Please provide a brief description of the bug.
label: How to reproduce
description: How can the error be reproduced?
placeholder: |
1. Go to '...'
2. Click on '...'
3. Scroll down to '...'
4. See error
validations:
required: true
- type: textarea
id: expected-behavior
attributes:
label: Expected behavior
description: A clear and concise description of what you expected to happen.
validations:
required: true
- type: textarea
id: logs
attributes:
label: Logs
description: If applicable, add complete logs from the system logs.
render: shell
validations:
required: false
- type: textarea
id: screenshots
attributes:
label: Screenshots
description: If applicable, add screenshots to help explain your problem.
validations:
required: false

# Host details
- type: input
id: plant-it-version
attributes:
label: Plant-it version
placeholder: v1.0.0
validations:
required: true
- type: dropdown
id: plant-it-setup-method
attributes:
label: Setup Method
description: How did you installed Plant-it?
options:
- Docker
- Non-docker
validations:
required: true
- type: dropdown
id: plant-it-setup-os
attributes:
label: Operating System
description: In which operating system does the server run?
options:
- Linux (Ubuntu, CentOS,...)
- Windows
- macOS
- other (please specify in description)
validations:
required: true

# Client details
- type: textarea
id: client-details
attributes:
label: Local environment
description: If applicable, please provide additional information related to the environment you are using.
label: Client details
description: Details about your browser and operating system used to access Plant-it.
placeholder: |
1. backend version and app version
2. content of docker-compose.yml file (remember to hide possible sensitive info)
3. content of server.env file (remember to hide possible sensitive info)
4. app log
5. output of the docker compose log
- OS: [e.g. Windows, macOS, iOS, Android]
- Browser [e.g. Chrome, Firefox, Safari]
- Browser Version [e.g. 101.4]
- Android APK
validations:
required: false
6 changes: 0 additions & 6 deletions .github/workflows/create-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,6 @@ jobs:
- name: Download apk-signer tool
run: sudo apt-get update -y && sudo apt-get install -y apksigner

- name: Debug path info 1
run: pwd

- name: Setup Flutter
uses: subosito/flutter-action@v2
with:
Expand All @@ -35,9 +32,6 @@ jobs:
distribution: 'zulu'
java-version: '21'

- name: Debug path info 2
run: pwd

- name: Create apk File
run: flutter pub get && flutter build apk --release
working-directory: ./frontend
Expand Down

0 comments on commit 20cde6f

Please sign in to comment.