mirror of
https://github.com/kjanat/articulate-parser.git
synced 2026-01-16 15:02:09 +01:00
Introduces a configuration file for automatic management of stale issues, allowing better maintenance of the repository. Refines continuous integration workflows to include dependency review and release processes directly within the CI pipeline, improving efficiency and reducing redundancy by combining previously separate workflows. Updates branches and tags trigger configuration for CI workflows to ensure consistency in branch protection and deployment practices. Ensures CodeQL analysis setup aligns with current repository language use to enhance security scanning procedures.
109 lines
2.7 KiB
YAML
109 lines
2.7 KiB
YAML
name: Bug Report
|
|
description: Create a report to help us improve
|
|
title: '[BUG] '
|
|
labels: ['bug', 'triage']
|
|
body:
|
|
- type: markdown
|
|
attributes:
|
|
value: |
|
|
Thanks for taking the time to fill out this bug report!
|
|
|
|
- type: textarea
|
|
id: bug-description
|
|
attributes:
|
|
label: Bug Description
|
|
description: A clear and concise description of what the bug is.
|
|
placeholder: Describe the bug...
|
|
validations:
|
|
required: true
|
|
|
|
- type: textarea
|
|
id: reproduction-steps
|
|
attributes:
|
|
label: Steps to Reproduce
|
|
description: Steps to reproduce the behavior
|
|
placeholder: |
|
|
1. Run command '...'
|
|
2. Parse file '...'
|
|
3. See error
|
|
value: |
|
|
1.
|
|
2.
|
|
3.
|
|
validations:
|
|
required: true
|
|
|
|
- type: textarea
|
|
id: expected-behavior
|
|
attributes:
|
|
label: Expected Behavior
|
|
description: A clear and concise description of what you expected to happen.
|
|
placeholder: What should have happened?
|
|
validations:
|
|
required: true
|
|
|
|
- type: textarea
|
|
id: actual-behavior
|
|
attributes:
|
|
label: Actual Behavior
|
|
description: A clear and concise description of what actually happened.
|
|
placeholder: What actually happened?
|
|
validations:
|
|
required: true
|
|
|
|
- type: textarea
|
|
id: sample-data
|
|
attributes:
|
|
label: Sample Data
|
|
description: If applicable, provide sample Articulate Rise JSON data or URLs that reproduce the issue.
|
|
placeholder: Paste sample data or URLs here...
|
|
|
|
- type: dropdown
|
|
id: os
|
|
attributes:
|
|
label: Operating System
|
|
description: What operating system are you using?
|
|
options:
|
|
- Windows 11
|
|
- Windows 10
|
|
- macOS (Intel)
|
|
- macOS (Apple Silicon)
|
|
- Ubuntu
|
|
- Other Linux
|
|
- Other
|
|
validations:
|
|
required: true
|
|
|
|
- type: input
|
|
id: go-version
|
|
attributes:
|
|
label: Go Version
|
|
description: What version of Go are you using?
|
|
placeholder: e.g. 1.21.5
|
|
validations:
|
|
required: true
|
|
|
|
- type: input
|
|
id: version
|
|
attributes:
|
|
label: Parser Version
|
|
description: What version or commit of the parser are you using?
|
|
placeholder: e.g. v1.0.0 or commit hash
|
|
|
|
- type: textarea
|
|
id: error-output
|
|
attributes:
|
|
label: Error Output
|
|
description: Paste any error messages or stack traces here
|
|
render: shell
|
|
|
|
- type: textarea
|
|
id: additional-context
|
|
attributes:
|
|
label: Additional Context
|
|
description: |
|
|
Add any other context about the problem here, such as:
|
|
- Input file size
|
|
- Output format attempted
|
|
- Any workarounds you've found
|