2023-11-30 03:42:05 -05:00
|
|
|
---
|
|
|
|
name: Bug report
|
2023-11-30 15:29:09 -05:00
|
|
|
description: Create a bug report
|
2023-11-30 03:42:05 -05:00
|
|
|
labels:
|
|
|
|
- bug
|
|
|
|
body:
|
|
|
|
- type: markdown
|
|
|
|
attributes:
|
|
|
|
value: |
|
|
|
|
Thanks for taking the time to fill out this bug report!
|
|
|
|
- type: checkboxes
|
|
|
|
attributes:
|
|
|
|
label: Is there an existing issue for this?
|
2023-12-02 03:35:25 -05:00
|
|
|
description: Search to see if an issue already exists for the bug you encountered.
|
2023-11-30 03:42:05 -05:00
|
|
|
options:
|
2024-05-25 10:07:02 -04:00
|
|
|
- label: I have searched the existing issues
|
|
|
|
required: true
|
|
|
|
- type: checkboxes
|
|
|
|
attributes:
|
|
|
|
label: Are you using the latest Super-linter version available?
|
|
|
|
description: |
|
|
|
|
Ensure that you're using the latest Super-linter version.
|
|
|
|
https://github.com/super-linter/super-linter/releases/latest
|
|
|
|
options:
|
|
|
|
- label: I am using the latest Super-linter version.
|
|
|
|
required: true
|
|
|
|
- label: |
|
|
|
|
I can reproduce the issue running Super-linter using complete version identifier (example: vX.Y.Z), and not just with a partial one (example: vX)
|
|
|
|
required: true
|
|
|
|
- label: |
|
|
|
|
I am using the super-linter/super-linter action or container image, and not the deprecated github/super-linter action or container image.
|
|
|
|
required: true
|
|
|
|
- type: checkboxes
|
|
|
|
attributes:
|
|
|
|
label: Are you resonably sure that it's a Super-linter issue, and not an issue related to a tool that Super-linter runs?
|
|
|
|
description: |
|
|
|
|
If you encounter a specific issue, ensure that the issue is about
|
|
|
|
Super-linter, and not about a tool that Super-linter runs. For example,
|
|
|
|
if a linter reports an unexpected or a surprising error, you may check
|
|
|
|
if there are similar issues reported in that linter's issue tracker.
|
|
|
|
options:
|
|
|
|
- label: I think that this is a Super-linter issue.
|
|
|
|
required: true
|
2023-11-30 03:42:05 -05:00
|
|
|
- type: textarea
|
|
|
|
attributes:
|
|
|
|
label: Current Behavior
|
|
|
|
description: A concise description of what you're experiencing.
|
|
|
|
validations:
|
2023-12-02 03:35:25 -05:00
|
|
|
required: true
|
2023-11-30 03:42:05 -05:00
|
|
|
- type: textarea
|
|
|
|
attributes:
|
|
|
|
label: Expected Behavior
|
|
|
|
description: A concise description of what you expected to happen.
|
|
|
|
validations:
|
2023-12-02 03:35:25 -05:00
|
|
|
required: true
|
2023-11-30 03:42:05 -05:00
|
|
|
- type: textarea
|
|
|
|
attributes:
|
|
|
|
label: Super-Linter version
|
|
|
|
description: |
|
|
|
|
Super-Linter version where you observed this issue
|
|
|
|
placeholder: |
|
|
|
|
vX.Y.Z
|
|
|
|
render: markdown
|
|
|
|
validations:
|
|
|
|
required: true
|
2024-07-19 02:08:54 -04:00
|
|
|
- type: textarea
|
|
|
|
attributes:
|
|
|
|
label: Super-linter configuration
|
|
|
|
description: |
|
|
|
|
How you configured Super-linter to experience the issue.
|
|
|
|
If running on GitHub Actions, include the actions/checkout step
|
|
|
|
as well.
|
|
|
|
placeholder: |
|
|
|
|
- name: Checkout code
|
|
|
|
uses: actions/checkout@v4
|
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
|
|
|
|
|
|
|
- name: Super-linter
|
|
|
|
uses: super-linter/super-linter@vX.Y.Z
|
|
|
|
env:
|
|
|
|
# To report GitHub Actions status checks
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
........
|
|
|
|
........
|
|
|
|
render: yaml
|
|
|
|
validations:
|
|
|
|
required: true
|
2023-11-30 03:42:05 -05:00
|
|
|
- type: textarea
|
|
|
|
id: logs
|
|
|
|
attributes:
|
|
|
|
label: Relevant log output
|
|
|
|
description: |
|
2023-12-02 03:35:25 -05:00
|
|
|
Copy and paste any relevant log output.
|
2023-11-30 03:42:05 -05:00
|
|
|
This will be automatically formatted into code, so no need for backticks.
|
|
|
|
Enable debug logging, either on GitHub Actions, or when running locally.
|
2024-05-25 10:07:02 -04:00
|
|
|
Not attaching debug logging will delay the issue triaging process.
|
2023-11-30 03:42:05 -05:00
|
|
|
render: shell
|
|
|
|
validations:
|
|
|
|
required: true
|
|
|
|
- type: textarea
|
|
|
|
attributes:
|
|
|
|
label: Steps To Reproduce
|
|
|
|
description: |
|
|
|
|
Steps to reproduce the issue.
|
|
|
|
To speed up the triaging of your request, reproduce the issue running
|
|
|
|
Super-Linter locally: https://github.com/super-linter/super-linter/blob/main/docs/run-linter-locally.md
|
|
|
|
placeholder: |
|
|
|
|
1. In this environment...
|
|
|
|
1. With this config...
|
|
|
|
1. Run '...'
|
|
|
|
1. See error...
|
|
|
|
validations:
|
|
|
|
required: true
|
|
|
|
- type: textarea
|
|
|
|
attributes:
|
|
|
|
label: Anything else?
|
|
|
|
description: |
|
|
|
|
Links? References? Anything that will give us more context about the issue you are encountering!
|
|
|
|
validations:
|
|
|
|
required: false
|