mirror of
https://github.com/diced/zipline.git
synced 2025-12-12 07:40:45 -08:00
* feat: start removing next.js * feat: working ssr + dev + prod env * feat: all functionality added + client/ -> src/client/ * fix: build process * fix: caching on pnpm action * fix: ignores + cache action * fix: docker + exdev error * fix: generate prisma before types * fix: remove node@20 from actions * feat: dynamic import optimizations + titled pages * fix: removed unused vars * feat: small ui fixes and improvements * feat: small ui improvements * fix: linting error * fix: regex when adding domains
54 lines
1.8 KiB
YAML
54 lines
1.8 KiB
YAML
name: Bug
|
|
description: File a bug report
|
|
title: 'Bug: [insert title]'
|
|
labels: ['bug']
|
|
body:
|
|
- type: textarea
|
|
id: what-happened
|
|
attributes:
|
|
label: What happened?
|
|
description: Provide steps to reproduce the bug, and some context.
|
|
value: 'A bug happened!'
|
|
validations:
|
|
required: true
|
|
- type: dropdown
|
|
id: version
|
|
attributes:
|
|
label: Version
|
|
description: What version (or docker image) of Zipline are you using?
|
|
options:
|
|
- Latest release (ghcr.io/diced/zipline or ghcr.io/diced/zipline:latest)
|
|
- Latest commit (ghcr.io/diced/zipline:trunk)
|
|
- other (provide version in additional info)
|
|
validations:
|
|
required: true
|
|
- type: dropdown
|
|
id: browsers
|
|
attributes:
|
|
label: What browser(s) are you seeing the problem on?
|
|
multiple: true
|
|
options:
|
|
- Firefox
|
|
- Chromium-based (Chrome, Edge, Brave, Opera, mobile chrome/chromium based, etc)
|
|
- Safari
|
|
- Chromium-based Mobile (Chrome, Edge, Brave, Android WebView, etc)
|
|
- Firefox Mobile
|
|
- Safari Mobile
|
|
- type: textarea
|
|
id: zipline-logs
|
|
attributes:
|
|
label: Zipline Logs
|
|
description: Please copy and paste any relevant log output. Not seeing anything interesting? Try adding the `DEBUG=zipline` (v4) environment variable to see more logs, make sure to review the output and remove any sensitive information as it can be VERY verbose at times.
|
|
render: shell
|
|
- type: textarea
|
|
id: browser-logs
|
|
attributes:
|
|
label: Browser Logs
|
|
description: Please copy and paste any relevant log output.
|
|
render: shell
|
|
- type: textarea
|
|
id: additional-info
|
|
attributes:
|
|
label: Additional Info
|
|
description: Anything else that could be used to narrow down the issue, like your config.
|