Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

dev: improve bug report template #3930

Merged
merged 4 commits into from
Jul 4, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 11 additions & 4 deletions .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ body:
required: true
- label: Yes, I've searched similar issues on GitHub and didn't find any.
required: true
- label: Yes, I've included all information below (version, config, etc.).
- label: Yes, I've read the typecheck section of the FAQ (https://golangci-lint.run/usage/faq/#why-do-you-have-typecheck-errors).
required: true
- label: Yes, I've tried with the standalone linter if available (e.g., gocritic, go vet, etc.). (https://golangci-lint.run/usage/linters/)
required: true
Expand Down Expand Up @@ -43,13 +43,12 @@ body:
- type: textarea
id: config
attributes:
label: Configuration file
label: Configuration
value: |-
<details>

```console
$ cat .golangci.yml
# paste output here
# paste configuration file or CLI flags here
```

</details>
Expand Down Expand Up @@ -103,3 +102,11 @@ body:
</details>
validations:
required: true

- type: checkboxes
id: validation
attributes:
label: Validation
options:
- label: Yes, I've included all information above (version, config, etc.).
required: true
Loading