git-auto-commit-action/.github/ISSUE_TEMPLATE/bug.yaml

70 lines
2.5 KiB
YAML
Raw Normal View History

2022-09-17 14:35:49 +00:00
name: Bug Report
description: If you've already asked for help with a problem and confirmed something is broken with git-auto-commit itself, create a bug report.
2022-09-17 14:37:41 +00:00
labels: ["bug"]
2022-09-17 14:35:49 +00:00
body:
- type: markdown
attributes:
value: |
2024-07-06 10:06:47 +00:00
Before opening a bug report, please search for the behaviour in existing issues or discussions.
2022-09-17 14:35:49 +00:00
---
Thank you for taking the time to file a bug report!
- type: input
id: git-auto-commit-version
attributes:
label: git-auto-commit Version
description: "Which exact version of git-auto-commit are you using in your Workflow?"
placeholder: "v4.14.0"
validations:
2024-07-06 10:06:47 +00:00
required: true
2022-09-17 14:35:49 +00:00
- type: dropdown
id: machine
attributes:
label: Machine Type
description: On which type of machine is your workflow running?
options:
- Ubuntu (eg. ubuntu-latest)
- macOS (eg. macos-latest)
- Windows (Not supported!)
validations:
required: true
- type: textarea
id: bug-description
attributes:
label: Bug description
2024-07-06 10:06:47 +00:00
description: What exactly happened? Please describe your problem in detail.
2022-09-17 14:35:49 +00:00
validations:
required: true
- type: textarea
id: steps
attributes:
label: Steps to reproduce
description: Which steps do we need to take to reproduce this error?
validations:
required: true
- type: textarea
id: tried-solutions
attributes:
label: Tried solutions
description: Have you tried solving the issue by adapting your Workflow? What steps did you take?
- type: textarea
id: example-workflow
attributes:
label: Example Workflow
2024-07-06 10:06:47 +00:00
description: Please share the YAML-code of your GitHub Actions workflow which causes the bug. We use this to reproduce the error. If the workflow is in a private repostory, please provide a minimal example. (No need for backticks here, the pasted code will be correctly formatted.)
2022-09-17 14:35:49 +00:00
render: yaml
validations:
required: true
- type: textarea
id: logs
attributes:
label: Relevant log output
2024-07-06 10:06:47 +00:00
description: If applicable, provide relevant log output. Please copy and paste the output here, and make sure to remove any sensitive information. (No need for backticks here, the pasted code will be correctly formatted.)
2022-09-17 14:35:49 +00:00
render: shell
2024-07-06 10:06:47 +00:00
- type: input
2024-07-06 10:07:25 +00:00
id: repository-url
2024-07-06 10:06:47 +00:00
attributes:
label: Repository
description: If applicable, please provide the repository where the bug occurred.